Udostępnij za pośrednictwem


hash_multiset::value_type

[!UWAGA]

Ten interfejs API jest nieaktualny.Alternatywą jest unordered_multiset Class.

Typ, który opisuje obiekt zapisany jako element jako hash_multiset jako wartość.

typedef Key value_type;

Uwaga

value_typejest synonimem parametru Key.

Aby uzyskać więcej informacji na Key, zobacz sekcję Uwagi hash_multiset Class tematu.

Należy zauważyć, że zarówno key_type i value_type są synonimami dla parametru klucz.Oba typy są dostarczane dla klas hash_set i hash_multiset, gdzie są one identyczne, dla zachowania zgodności z klasy hash_map i hash_multimap, gdzie są one różne.

W Visual C++ .NET 2003, członkowie <hash_map> i <hash_set> pliki nagłówkowe są już w przestrzeni nazw std, ale raczej zostały przeniesione do obszaru nazw stdext.Zobacz stdext nazw uzyskać więcej informacji.

Przykład

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

Wymagania

Nagłówek: <hash_set>

Przestrzeń nazw: stdext

Zobacz też

Informacje

hash_multiset Class

Standardowa biblioteka szablonu