Compartir a través de


hash_multiset::crbegin

Nota

Esta API está obsoleta.La alternativa es unordered_multiset (Clase).

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 de hash_multiset (Clase) o un direccionamiento invertido que había sido el último elemento de hash_multisetunreversed.

Comentarios

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

Con el valor devuelto de crbegin, el objeto de 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, sino que se han movido 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>

Espacio de nombres: stdext

Vea también

Referencia

hash_multiset (Clase)

Biblioteca de plantillas estándar