Sdílet prostřednictvím


hash_map::crbegin

[!POZNÁMKA]

Toto rozhraní API je zastaralé.Alternativou je unordered_map Class.

Vrátí const iterátor adresování první element v převrácené hash_map.

const_reverse_iterator crbegin( ) const;

Vrácená hodnota

Obousměrný iterátor adresování první prvek Stornovaná obrátit const hash_map Class nebo adresování, co byl poslední prvek v unreversed hash_map.

Poznámky

crbeginje použit s reverzní hash_map stejně jako začít se používá s hash_map.

Vrácená hodnota crbegin, hash_map objekt nelze upravit.

crbeginlze použít k iteraci hash_map dozadu.

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_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;
}
  

Požadavky

Záhlaví: <hash_map>

Obor názvů: stdext

Viz také

Referenční dokumentace

hash_map Class

Standardní šablona knihovny