次の方法で共有


hash_multimap::value_comp

[!メモ]

この API は、互換性のために残されています。代わりに unordered_multimap クラスです。

このメンバー関数は、キー値を比較してhash_multimapの要素の順序を決定する関数オブジェクトを返します。

value_compare value_comp( ) const;

戻り値

要素の並べ替えにhash_multimapが使用する比較関数オブジェクトを返します。

解説

hash_multimap m について、2 つの要素 e1(k1*, d1) および e2(k2, d*2) が value_type 型のオブジェクトで、k1 と k2 が key_type 型のキーで d1 と d2 が mapped_type 型のそれぞれのデータである場合、then m.value_comp( )(e1, e2) は m.key_comp( ) (k1, k2) と等価です。格納されているオブジェクトには、メンバー関数を定義します。

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

_Left のキー値が並べ替え順序の _Right のキー値と等しくない前および true を返すかが。

Visual C++ .NET 2003では、<hash_map><hash_set> ヘッダー ファイルのメンバーはstdの名前空間に存在しなくなりましたが、ではなくstdextの名前空間に型。詳細については、「The stdext Namespace」を参照してください。

使用例

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

出力

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 Class

標準テンプレート ライブラリ