Udostępnij za pośrednictwem


map::erase

Usuwa element lub zakres elementów w mapie z określonych pozycjach lub usuwa elementy zgodne z określonego klucza.

iterator erase(
   iterator _Where
);
iterator erase(
   iterator _First,
   iterator _Last
);
size_type erase(
   const key_type& _Key
);

Parametry

  • _Where
    Położenie elementu, który ma zostać usunięty z mapy.

  • _First
    Pozycja pierwszego elementu usunięte z mapy.

  • _Last
    Pozycja tylko poza ostatni element usunięty z mapy.

  • _Key
    Wartość klucza elementy do usunięcia z mapy.

Wartość zwracana

Dla pierwszego funkcje dwóch iteratora dwukierunkowe, wyznacza pierwszy element pozostały poza elementy usunięte lub wskaźnik celu mapy, jeśli element nie istnieje.

[!UWAGA]

Ten typ zwrotu nie zgodne ze standardem C++.

Dla trzeciego funkcji Członkowskich zwraca liczbę elementów, które zostały usunięte z mapy.

Uwagi

W niektórych przypadkach ta metoda może być throw out_of_range wyjątku.

Przykład

Podczas kompilowania przykładzie z /Wp64 flagę lub na platformie 64-bitowe, zostanie wygenerowany kompilator ostrzeżenia C4267.Ostrzeżenie to uzyskać więcej informacji, zobacz Kompilator ostrzeżenia (poziom 3) C4267.

// map_erase.cpp
// compile with: /EHsc
#include <map>
#include <iostream>

int main()
{
    using namespace std;
    map<int, int> m1, m2, m3;
    map<int, int>::iterator pIter, Iter1, Iter2;
    int i;
    map<int, int>::size_type n;
    typedef pair<int, int> Int_Pair;

    for (i = 1; i < 5; i++)
    {
        m1.insert(Int_Pair(i, i));
        m2.insert(Int_Pair(i, i*i));
        m3.insert(Int_Pair(i, i-1));
    }

    // The 1st member function removes an element at a given position
    Iter1 = ++m1.begin();
    m1.erase(Iter1);

    cout << "After the 2nd element is deleted, the map m1 is:";
    for (pIter = m1.begin(); pIter != m1.end(); pIter++)
        cout << " " << pIter->second;
    cout << "." << endl;

    // The 2nd member function removes elements
    // in the range [_First, _Last)
    Iter1 = ++m2.begin();
    Iter2 = --m2.end();
    m2.erase(Iter1, Iter2);

    cout << "After the middle two elements are deleted,"
         << " the map m2 is:";
    for (pIter = m2.begin(); pIter != m2.end(); pIter++)
        cout << " " << pIter->second;
    cout << "." << endl;

    // The 3rd member function removes elements with a given _Key
    n = m3.erase(2);

    cout << "After the element with a key of 2 is deleted,\n"
         << "the map m3 is:";
    for (pIter = m3.begin(); pIter != m3.end(); pIter++)
        cout << " " << pIter->second;
    cout << "." << endl;

    // The 3rd member function returns the number of elements removed
    cout << "The number of elements removed from m3 is: "
         << n << "." << endl;

    // The dereferenced iterator can also be used to specify a key
    Iter1 = ++m3.begin();
    m3.erase(Iter1);

    cout << "After another element with a key equal to that"
         << endl;
    cout  << "of the 2nd element is deleted, "
          << "the map m3 is:";
    for (pIter = m3.begin(); pIter != m3.end(); pIter++)
        cout << " " << pIter->second;
    cout << "." << endl;
}
  
  
  
  
  

Wymagania

Nagłówek: <map>

Obszar nazw: std

Zobacz też

Informacje

map Class

map::max_size, map::clear, map::erase, i map::size

Standardowa biblioteka szablonu