hash_map::crbegin
[!UWAGA]
Ten interfejs API jest nieaktualny.Alternatywą jest unordered_map Class.
Zwraca wartość sterująca const, adresowanie pierwszy element w hash_map odwrócone.
const_reverse_iterator crbegin( ) const;
Wartość zwracana
Const odwrócić sterująca dwukierunkowy adresowania pierwszym elementem odwrócone hash_map Class lub adresowania, co zostało ostatni element w stałe hash_map.
Uwagi
crbeginjest używany z hash_map odwrócone tylko jako rozpocząć jest używana z hash_map.
Z zwraca wartość z crbegin, hash_map obiektu nie można modyfikować.
crbeginSłuży do iteracji przez hash_map do tyłu.
W Visual C++ .NET 2003, członkowie <hash_map> i <hash_set> pliki nagłówkowe są już w przestrzeni nazw std, ale raczej zostały przeniesione do obszaru nazw stdext.Zobacz stdext nazw uzyskać więcej informacji.
Przykład
// hash_map_crbegin.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_reverse_iterator hm1_crIter;
typedef pair <int, int> Int_Pair;
hm1.insert ( Int_Pair ( 3, 30 ) );
hm1_crIter = hm1.crbegin( );
cout << "The first element of the reversed hash_map hm1 is "
<< hm1_crIter -> first << "." << endl;
}
Wymagania
Nagłówek: <hash_map>
Przestrzeń nazw: stdext