hash_multiset::cbegin
[!POZNÁMKA]
Toto rozhraní API je zastaralé.Alternativou je unordered_multiset Class.
Vrátí iterace const, který řeší první prvek hash_multiset.
const_iterator cbegin( ) const;
Vrácená hodnota
Const obousměrný iterátor adresování první prvek hash_multiset Class nebo umístění následných prázdné hash_multiset.
Poznámky
Vrácená hodnota cbegin, prvky hash_multiset objekt nelze upravit.
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_cbegin.cpp
// compile with: /EHsc
#include <hash_multiset>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_multiset <int> hs1;
hash_multiset <int>::const_iterator hs1_cIter;
hs1.insert( 1 );
hs1.insert( 2 );
hs1.insert( 3 );
hs1_cIter = hs1.cbegin( );
cout << "The first element of hs1 is " << *hs1_cIter << endl;
}
Požadavky
Záhlaví: <hash_set>
Obor názvů: stdext