hash_multiset::end
[!POZNÁMKA]
Toto rozhraní API je zastaralé.Alternativou je unordered_multiset Class.
Vrátí iterátor, který řeší umístění následných posledního prvku hash_multiset.
const_iterator end( ) const;
iterator end( );
Vrácená hodnota
Obousměrný iterátor, který řeší umístění následných posledního prvku hash_multiset.Pokud hash_multiset je prázdná, pak hash_multiset::end == hash_multiset::begin.
Poznámky
Konec se používá k testování, zda je iterátor dosáhl konce své hash_multiset.Hodnoty vrácené end neměl přímo odkázat.
V aplikaci Visual C++ .NET 2003, členové <hash_map> a <hash_set> jsou již v oboru názvů std soubory hlaviček, ale spíše být přesunut do oboru názvů stdext.Viz stdext obor názvů Další informace.
Příklad
// 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;
}
Požadavky
Záhlaví: <hash_set>
Obor názvů: stdext