hash_multiset::crbegin
[!UWAGA]
Ten interfejs API jest nieaktualny.Alternatywą jest unordered_multiset Class.
Zwraca wartość sterująca const, adresowanie pierwszy element w hash_multiset odwrócone.
const_reverse_iterator crbegin( ) const;
Wartość zwracana
Const odwrócić sterująca dwukierunkowy adresowania pierwszym elementem odwrócone hash_multiset Class lub adresowania, co zostało ostatni element w stałe hash_multiset.
Uwagi
crbeginjest używany z odwróconą hash_multiset po prostu jako hash_multiset::begin jest używana z hash_multiset.
Z zwraca wartość z crbegin, hash_multiset obiektu nie można modyfikować.
crbeginSłuży do iteracji przez hash_multiset 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_multiset_crbegin.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_reverse_iterator hs1_crIter;
hs1.insert( 10 );
hs1.insert( 20 );
hs1.insert( 30 );
hs1_crIter = hs1.crbegin( );
cout << "The first element in the reversed hash_multiset is "
<< *hs1_crIter << "." << endl;
}
Wymagania
Nagłówek: <hash_set>
Przestrzeń nazw: stdext