Compartir a través de


hash_multiset::crbegin

[!NOTA]

Esta API está obsoleta.La alternativa es unordered_multiset Class.

Devuelve un iterador const que dirige el primer elemento de un hash_multiset invertido.

const_reverse_iterator crbegin( ) const;

Valor devuelto

Un iterador bidireccional inversos const que dirige el primer elemento hash_multiset Class o un direccionamiento invertido que había sido el último elemento hash_multisetunreversed.

Comentarios

crbegin se utiliza con hash_multiset invertido igual que hash_multiset::begin se utiliza con hash_multiset.

Con el valor devuelto crbegin, el objeto hash_multiset no puede modificarse.

crbegin se puede utilizar para recorrer hash_multiset hacia atrás.

En Visual C++ .NET 2003, los miembros de los archivos de encabezado <hash_map> y <hash_set> ya no están en el espacio de nombres std, pero se han movido bastante al espacio de nombres stdext.Vea El espacio de nombres stdext para obtener más información.

Ejemplo

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

Requisitos

Encabezado: <hash_set>

Stdext deEspacio de nombres:

Vea también

Referencia

hash_multiset Class

Biblioteca de plantillas estándar