共用方式為


hash_multiset::value_type

注意事項注意事項

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

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

typedef Key value_type;

圖例

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

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

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

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

範例

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

需求

標頭: <hash_set>

**命名空間:**stdext

請參閱

參考

hash_multiset 類別

標準樣板程式庫