共用方式為


hash_multimap::value_comp

注意事項注意事項

這個 API 已經過時。替代案例是 unordered_multimap 類別

成員函式傳回藉由比較其索引鍵值判斷項目順序 hash_multimap 的函式物件。

value_compare value_comp( ) const;

傳回值

傳回 hash_multimap 使用排序其項目的比較函式物件。

備註

對於 hash_multimap m,因此,如果兩個項目 e1(k1, d1) 和 e2(k2, d2) 是 value_type型別的物件, k1k2key_type 型別其索引鍵,而且 d1 和 d2 是 mapped_type型別其資料,然後 m.(value_comp) (e1, e2) 以 m.(key_comp) (k1, k2)。 預存物件定義成員函式

bool operator(value_type&_Left, value_type&_Right);

要傳回 true ,如果 _Left 的索引鍵值包含在之前並不等於 _Right 的索引鍵值包含在排序次序中。

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

範例

// hash_multimap_value_comp.cpp
// compile with: /EHsc
#include <hash_map>
#include <iostream>

int main( )
{
   using namespace std;
   using namespace stdext;
   
   hash_multimap <int, int, hash_compare<int, less<int> > > hm1;
   hash_multimap <int, int, hash_compare<int, less<int> > 
      >::value_compare vc1 = hm1.value_comp( );
   hash_multimap <int,int>::iterator Iter1, Iter2;
   
   Iter1= hm1.insert ( hash_multimap <int, int> :: value_type ( 1, 10 ) );
   Iter2= hm1.insert ( hash_multimap <int, int> :: value_type ( 2, 5 ) );

   if( vc1( *Iter1, *Iter2 ) == true )
   {
      cout << "The element ( 1,10 ) precedes the element ( 2,5 )."
           << endl;
   }
   else   
   {
      cout << "The element ( 1,10 ) does "
           << "not precede the element ( 2,5 )."
           << endl;
   }

   if( vc1( *Iter2, *Iter1 ) == true )   
   {
      cout << "The element ( 2,5 ) precedes the element ( 1,10 )."
           << endl;
   }
   else   
   {
      cout << "The element ( 2,5 ) does "
           << "not precede the element ( 1,10 )."
           << endl;
   }
}

Output

The element ( 1,10 ) precedes the element ( 2,5 ).
The element ( 2,5 ) does not precede the element ( 1,10 ).

需求

標頭檔: <hash_map>

**命名空間:**stdext

請參閱

參考

hash_multimap 類別

標準樣板程式庫