Sdílet prostřednictvím


hash_multiset::crbegin

[!POZNÁMKA]

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

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

const_reverse_iterator crbegin( ) const;

Vrácená hodnota

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

Poznámky

crbeginpoužívá se stornované hash_multiset stejně jako hash_multiset::begin se používá s hash_multiset.

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

crbeginlze použít k iteraci hash_multiset 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_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;
}
  

Požadavky

Záhlaví: <hash_set>

Obor názvů: stdext

Viz také

Referenční dokumentace

hash_multiset Class

Standardní šablona knihovny