次の方法で共有


hash_set::value_comp

[!メモ]

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

hash_setで使用されている順序の要素の値の比較のオブジェクトのコピーを取得します。

value_compare value_comp( ) const;

戻り値

要素の順序を指定するには、テンプレート パラメーター Compareであるhash_setが使用する関数オブジェクトを返します。

Compareの詳細については、hash_set Class のトピックの"解説"を参照してください。

解説

格納されているオブジェクトには、メンバー関数を定義します:

bool operator (_xValconst Key& const Key& のyVal_) ;

_xVal の並べ替え順序の _yVal と一致させる前および true を返すかが。

value_comparekey_compare の両方がテンプレート パラメーターのシノニム Compareであることに注意してください。どちらの型も明確なhash_map、およびhash_multimapのクラスとの互換性のために、同一であるhash_setとhash_multisetのクラスに提供されます。

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

使用例

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

int main( )
{
   using namespace std;
   using namespace stdext;
   
   hash_set <int, hash_compare < int, less<int> > > hs1;
   hash_set <int, hash_compare < int, less<int> >  >::value_compare
      vc1 = hs1.value_comp( );
   bool result1 = vc1( 2, 3 );
   if( result1 == true )
   {
      cout << "vc1( 2,3 ) returns value of true, "
           << "where vc1 is the function object of hs1."
           << endl;
   }
   else
   {
      cout << "vc1( 2,3 ) returns value of false, "
           << "where vc1 is the function object of hs1."
           << endl;
   }

   hash_set <int, hash_compare < int, greater<int> > > hs2;
   hash_set<int, hash_compare < int, greater<int> > >::value_compare
      vc2 = hs2.value_comp( );
   bool result2 = vc2( 2, 3 );
   if( result2 == true )
   {
      cout << "vc2( 2,3 ) returns value of true, "
           << "where vc2 is the function object of hs2."
           << endl;
   }
   else
   {
      cout << "vc2( 2,3 ) returns value of false, "
           << "where vc2 is the function object of hs2."
           << endl;
   }
}

出力

vc1( 2,3 ) returns value of true, where vc1 is the function object of hs1.
vc2( 2,3 ) returns value of false, where vc2 is the function object of hs2.

必要条件

ヘッダー: <hash_set>

名前空間: のstdext

参照

関連項目

hash_set Class

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