共用方式為


hash_set::value_type

注意事項注意事項

這個 API 已經過時。替代方案是 unordered_set 類別

描述做為其儲存為 hash_set 項目物件值的型別。

typedef Key value_type;

圖例

value_type 是樣板參數 Key的同義字。

請注意 key_typevalue_type 是樣板參數的 Key同義資料表。 兩個型別為集合和 hash_set 類別提供,其為與對應和多重對應類別的相容性相同,,它們是不同的。

如需 Key,請參閱 hash_set 類別 主題的 < 備註 > 一節。

在 Visual C++ .NET 2003 中, <hash_map><hash_set> 標頭檔的成員不在 std 命名空間中,而是移至 stdext 命名空間。 如需詳細資訊,請參閱 stdext 命名空間

範例

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

需求

標頭: <hash_set>

**命名空間:**stdext

請參閱

參考

hash_set 類別

標準樣板程式庫