Udostępnij za pośrednictwem


hash_set::erase

[!UWAGA]

Ten interfejs API jest nieaktualny.Alternatywą jest unordered_set Class.

Usuwa element lub szereg elementów w hash_set od określonego stanowiska lub usuwa elementy, które odpowiadają określonym kluczem.

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

Parametry

  • _Where
    Położenie elementu ma być usunięty z hash_set.

  • _First
    Położenie elementu pierwszy usunięte z hash_set.

  • _Last
    Pozycja poza ostatni element usunięty z hash_set.

  • _Key
    Klucz elementy usunięte z hash_set.

Wartość zwracana

Dla funkcji pierwsze dwa Państwa sterująca dwukierunkowe, wyznacza pierwszy element, pozostało poza wszelkie elementy usunięte lub wskaźnika do końca hash_set, jeśli taki element nie istnieje.Dla trzeciego Państwa funkcja, liczba elementów, które zostały usunięte z hash_set.

Uwagi

Funkcje składowe nigdy Zgłoś wyjątek.

W Visual C++ .NET 2003, członkowie <hash_map> i <hash_set> pliki nagłówkowe są już w przestrzeni nazw std, ale raczej zostały przeniesione do obszaru nazw stdext.Zobacz stdext nazw uzyskać więcej informacji.

Przykład

Podczas kompilowania w tym przykładzie z /Wp64 flaga lub na platformie 64-bitowy kompilator ostrzeżenie C4267 zostanie wygenerowany.Aby uzyskać więcej informacji na temat tego ostrzeżenia, zobacz Kompilator ostrzeżenia (poziom 3) C4267.

// hash_set_erase.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>

int main()
{
    using namespace std;
    using namespace stdext;
    hash_set<int> hs1, hs2, hs3;
    hash_set<int>::iterator pIter, Iter1, Iter2;
    int i;
    hash_set<int>::size_type n;

    for (i = 1; i < 5; i++)
    {
        hs1.insert (i);
        hs2.insert (i * i);
        hs3.insert (i - 1);
    }

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

    cout << "After the 2nd element is deleted, the hash_set hs1 is:";
    for (pIter = hs1.begin(); pIter != hs1.end(); pIter++)
        cout << " " << *pIter;
    cout << "." << endl;

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

    cout << "After the middle two elements are deleted, "
         << "the hash_set hs2 is:";
    for (pIter = hs2.begin(); pIter != hs2.end(); pIter++)
        cout << " " << *pIter;
    cout << "." << endl;

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

    cout << "After the element with a key of 2 is deleted, "
         << "the hash_set hs3 is:";
    for (pIter = hs3.begin(); pIter != hs3.end(); pIter++)
        cout << " " << *pIter;
    cout << "." << endl;

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

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

    cout << "After another element (unique for hash_set) with a key "
         << endl;
    cout  << "equal to that of the 2nd element is deleted, "
          << "the hash_set hs3 is:";
    for (pIter = hs3.begin(); pIter != hs3.end(); pIter++)
        cout << " " << *pIter;
    cout << "." << endl;
}
  
  
  
  
  

Wymagania

Nagłówek: <hash_set>

Przestrzeń nazw: stdext

Zobacz też

Informacje

hash_set Class

Standardowa biblioteka szablonu