共用方式為


hash_multiset::key_comp

注意事項注意事項

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

擷取用來比較物件的複製到命令輸入 hash_multiset。

key_compare key_comp( ) const;

傳回值

傳回 hash_multiset 樣板參數 Traits,包含函式物件用於雜湊和排序容器的項目。

如需Traits的詳細資訊,請參閱主題hash_multiset 類別

備註

儲存的物件定義了 10% 個成員函式:

bool operator(const Key& _xVal, const Key&_yVal);

要傳回 true ,如果 _xVal 在之前並不等於在排序順序中的 _yVal 。

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

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

範例

// hash_multiset_key_comp.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>

int main( )
{
   using namespace std;
   using namespace stdext;
   
   hash_multiset <int, hash_compare < int, less<int> > >hms1;
   hash_multiset<int, hash_compare < int, less<int> > >::key_compare kc1
          = hms1.key_comp( ) ;
   bool result1 = kc1( 2, 3 ) ;
   if( result1 == true )
   {
      cout << "kc1( 2,3 ) returns value of true, "
           << "where kc1 is the function object of hms1."
           << endl;
   }
   else
   {
      cout << "kc1( 2,3 ) returns value of false "
           << "where kc1 is the function object of hms1."
        << endl;
   }

   hash_multiset <int, hash_compare < int, greater<int> > > hms2;
   hash_multiset<int, hash_compare < int, greater<int> > >::key_compare
         kc2 = hms2.key_comp( ) ;
   bool result2 = kc2( 2, 3 ) ;
   if( result2 == true )
   {
      cout << "kc2( 2,3 ) returns value of true, "
           << "where kc2 is the function object of hms2."
           << endl;
   }
   else
   {
      cout << "kc2( 2,3 ) returns value of false, "
           << "where kc2 is the function object of hms2."
           << endl;
   }
}

Output

kc1( 2,3 ) returns value of true, where kc1 is the function object of hms1.
kc2( 2,3 ) returns value of false, where kc2 is the function object of hms2.

需求

標頭: <hash_set>

**命名空間:**stdext

請參閱

參考

hash_multiset 類別

標準樣板程式庫