共用方式為


hash_multiset::value_type

注意事項注意事項

這個 API 已經過時。這個選項是 unordered_multiset Class

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

typedef Key value_type;

備註

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

如需 Key資訊,請參閱 hash_multiset Class 主題的<備註>一節。

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

在 Visual C++ .NET Pocket PC, <hash_map><hash_set> 標頭檔 (Header File) 的成員不在 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 Class

標準樣板程式庫