hash_set::begin
[!POZNÁMKA]
Toto rozhraní API je zastaralé.Alternativou je unordered_set Class.
Vrátí iterátor, který řeší první prvek hash_set.
const_iterator begin( ) const;
iterator begin( );
Vrácená hodnota
Obousměrný iterátor, první prvek hash_set nebo umístění následných prázdný hash_set adresování.
Poznámky
Pokud vrácená hodnota začít je přiřazen const_iterator, prvků v objektu hash_set nelze změnit.Pokud vrácená hodnota začít je přiřazen iterátor, lze upravit prvků v objektu hash_set.
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_begin.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.begin( );
cout << "The first element of hs1 is " << *hs1_Iter << endl;
hs1_Iter = hs1.begin( );
hs1.erase( hs1_Iter );
// The following 2 lines would err because the iterator is const
// hs1_cIter = hs1.begin( );
// hs1.erase( hs1_cIter );
hs1_cIter = hs1.begin( );
cout << "The first element of hs1 is now " << *hs1_cIter << endl;
}
Požadavky
Záhlaví: <hash_set>
Obor názvů: stdext