hash_map::cbegin
[!POZNÁMKA]
Toto rozhraní API je zastaralé.Alternativou je unordered_map Class.
Vrátí const iterátor adresování první prvek hash_map.
const_iterator cbegin( ) const;
Vrácená hodnota
Const obousměrný iterátor adresování první prvek hash_map Class nebo umístění následných prázdné hash_map.
Příspěvek
Vrácená hodnota cbegin, hash_map 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_map_cbegin.cpp
// compile with: /EHsc
#include <hash_map>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_map <int, int> hm1;
hash_map <int, int> :: const_iterator hm1_cIter;
typedef pair <int, int> Int_Pair;
hm1.insert ( Int_Pair ( 2, 4 ) );
hm1_cIter = hm1.cbegin ( );
cout << "The first element of hm1 is "
<< hm1_cIter -> first << "." << endl;
}
Požadavky
Záhlaví: <hash_map>
Obor názvů: stdext