Udostępnij za pośrednictwem


hash_multiset::end

[!UWAGA]

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

Zwraca iteratora, że adresy lokalizacji, zastępując ostatni element w hash_multiset.

const_iterator end( ) const; 
iterator end( );

Wartość zwracana

Sterująca dwukierunkowe, że adresy lokalizacji, zastępując ostatni element w hash_multiset.Jeśli hash_multiset jest pusta, a następnie hash_multiset::end == hash_multiset::begin.

Uwagi

koniec jest używana do sprawdzenia, czy osiągnął koniec swojej hash_multiset iterację.Wartość zwracana przez koniec nie należy usunąć odwołania.

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

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

int main( )
{
   using namespace std;
   using namespace stdext;
   hash_multiset <int> hms1;
   hash_multiset <int> :: iterator hms1_Iter;
   hash_multiset <int> :: const_iterator hms1_cIter;
   
   hms1.insert( 1 );
   hms1.insert( 2 );
   hms1.insert( 3 );

   hms1_Iter = hms1.end( );
   hms1_Iter--;
   cout << "The last element of hms1 is " << *hms1_Iter << endl;

   hms1.erase( hms1_Iter );

   // The following 3 lines would err because the iterator is const
   // hms1_cIter = hms1.end( );
   // hms1_cIter--;
   // hms1.erase( hms1_cIter );

   hms1_cIter = hms1.end( );
   hms1_cIter--;
   cout << "The last element of hms1 is now " << *hms1_cIter << endl;
}
  

Wymagania

Nagłówek: <hash_set>

Przestrzeń nazw: stdext

Zobacz też

Informacje

hash_multiset Class

Standardowa biblioteka szablonu