Compartir a través de


hash_multiset::value_type

Nota

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

Un tipo que describe un objeto almacenado como elemento como hash_multiset en su capacidad como valor.

typedef Key value_type;

Nota

value_type es un sinónimo para el parámetro Keyde la plantilla.

Para obtener más información sobre Key, vea la sección comentarios de tema de hash_multiset (Clase) .

Observe que key_type y value_type son sinónimos para el parámetro Clavede la plantilla. Proporcionan ambos tipos para el hash_set y el hash_multiset de las clases, donde son idénticos, por compatibilidad con el hash_map y el hash_multimap de las clases, donde distintos.

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_value_type.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>

int main( )
{
   using namespace std;
   using namespace stdext;
   hash_multiset <int> hms1;
   hash_multiset <int>::iterator hms1_Iter;

   // Declare value_type
   hash_multiset <int> :: value_type hmsvt_Int; 

   hmsvt_Int = 10;   // Initialize value_type

   // Declare key_type
   hash_multiset <int> :: key_type hmskt_Int;
   hmskt_Int = 20;             // Initialize key_type

   hms1.insert( hmsvt_Int );         // Insert value into s1
   hms1.insert( hmskt_Int );         // Insert key into s1

   // A hash_multiset accepts key_types or value_types as elements
   cout << "The hash_multiset has elements:";
   for ( hms1_Iter = hms1.begin() ; hms1_Iter != hms1.end( );
         hms1_Iter++)
      cout << " " << *hms1_Iter;
      cout << "." << endl;
}
  

Requisitos

Encabezado: <hash_set>

Espacio de nombres: stdext

Vea también

Referencia

hash_multiset (Clase)

Biblioteca de plantillas estándar