Udostępnij za pośrednictwem


hash_set::crbegin

[!UWAGA]

Ten interfejs API jest nieaktualny.Alternatywą jest unordered_set Class.

Zwraca wartość sterująca const, adresowanie pierwszy element w hash_set odwrócone.

const_reverse_iterator crbegin( ) const;

Wartość zwracana

Const odwrócić sterująca dwukierunkowy adresowania pierwszym elementem odwrócone hash_set Class lub adresowania, co zostało ostatni element w stałe hash_set.

Uwagi

crbeginjest używany z hash_set odwrócone tylko jako hash_set::begin jest używana z hash_set.

Z zwraca wartość z crbegin, hash_set obiektu nie można modyfikować.

crbeginSłuży do iteracji przez hash_set 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_set_crbegin.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>

int main( )
{
   using namespace std;
   using namespace stdext;
   hash_set <int> hs1;
   hash_set <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_set is "
        << *hs1_crIter << "." << endl;
}
  

Wymagania

Nagłówek: <hash_set>

Przestrzeń nazw: stdext

Zobacz też

Informacje

hash_set Class

Standardowa biblioteka szablonu