Sdílet prostřednictvím


hash_multimap::crbegin

[!POZNÁMKA]

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

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

const_reverse_iterator crbegin( ) const;

Vrácená hodnota

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

Poznámky

crbeginje použit s reverzní hash_multimap stejně jako hash_multimap::begin se používá s hash_multimap.

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

crbeginlze použít k iteraci hash_multimap 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_multimap_crbegin.cpp
// compile with: /EHsc
#include <hash_multimap>
#include <iostream>

int main( )
{
   using namespace std;
   using namespace stdext;
   hash_multimap <int, int> hm1;

   hash_multimap <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_multimap hm1 is "
        << hm1_crIter -> first << "." << endl;
}
  

Požadavky

Záhlaví: <hash_map>

Obor názvů: stdext

Viz také

Referenční dokumentace

hash_multimap Class

Standardní šablona knihovny