hash_set::end
[!POZNÁMKA]
Toto rozhraní API je zastaralé.Alternativou je unordered_set Class.
Vrátí iterátor, který řeší umístění následných posledního prvku hash_set.
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_set.Pokud hash_set je prázdná, pak hash_set::end == hash_set::begin.
Poznámky
Konec se používá k testování, zda je iterátor dosáhl konce své hash_set.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_set_end.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_set <int> hs1;
hash_set <int> :: iterator hs1_Iter;
hash_set <int> :: const_iterator hs1_cIter;
hs1.insert( 1 );
hs1.insert( 2 );
hs1.insert( 3 );
hs1_Iter = hs1.end( );
hs1_Iter--;
cout << "The last element of hs1 is " << *hs1_Iter << endl;
hs1.erase( hs1_Iter );
// The following 3 lines would err because the iterator is const:
// hs1_cIter = hs1.end( );
// hs1_cIter--;
// hs1.erase( hs1_cIter );
hs1_cIter = hs1.end( );
hs1_cIter--;
cout << "The last element of hs1 is now " << *hs1_cIter << endl;
}
Požadavky
Záhlaví: <hash_set>
Obor názvů: stdext