hash_set::value_type
Not
Bu API artık kullanılmıyor.Alternatif unordered_set Class.
Açıklayan bir hash_set değeri olarak kapasitesi içinde bir öğe olarak depolanan bir nesne türü.
typedef Key value_type;
Açıklama
value_typeŞablon parametresi ile eşanlamlıdır Key.
Unutmayın her ikisi de key_type ve value_type eşanlamlıdır şablon parametresi için anahtar. Burada farklı harita ve multimap sınıfları ile uyumluluk için özdeş oldukları kümesi ve hash_set sınıfları için her iki tür sağlanır.
Daha fazla bilgi için Key, açıklamalar bölümüne bakın hash_set Class konu.
Visual C++ .NET 2003, üyeleri de <hash_map> ve <hash_set> başlık dosyaları artık std ad alanında bulunan, ancak bunun yerine stdext ad alanına taşınmış. Bkz: ad stdext daha fazla bilgi için.
Örnek
// 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;
}
Gereksinimler
Başlık: <hash_set>
Ad alanı: stdext