hash_set::value_type
[!UWAGA]
Ten interfejs API jest nieaktualny.Alternatywą jest unordered_set Class.
Typ, który opisuje obiekt zapisany jako elementu hash_set jako wartość.
typedef Key value_type;
Uwaga
value_typejest synonimem parametru Key.
Należy zauważyć, że zarówno key_type i value_type są synonimami dla parametru klucz.Oba typy są dostarczane dla klas zestaw i hash_set, gdzie są one identyczne, dla zachowania zgodności z mapy i klasy multimap, gdzie są one różne.
Aby uzyskać więcej informacji na Key, zobacz sekcję Uwagi hash_set Class tematu.
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_set_value_type.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_set <int> hs1;
hash_set <int>::iterator hs1_Iter;
hash_set <int> :: value_type hsvt_Int; // Declare value_type
hsvt_Int = 10; // Initialize value_type
hash_set <int> :: key_type hskt_Int; // Declare key_type
hskt_Int = 20; // Initialize key_type
hs1.insert( hsvt_Int ); // Insert value into hs1
hs1.insert( hskt_Int ); // Insert key into hs1
// A hash_set accepts key_types or value_types as elements
cout << "The hash_set has elements:";
for ( hs1_Iter = hs1.begin( ) ; hs1_Iter != hs1.end( ); hs1_Iter++)
cout << " " << *hs1_Iter;
cout << "." << endl;
}
Wymagania
Nagłówek: <hash_set>
Przestrzeń nazw: stdext