次の方法で共有


hash_set::key_comp

[!メモ]

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

ハッシュの特性のコピーを取得しますhash_setの要素のキー値をハッシュ化、並べ替えに使用される取得します。

key_compare key_comp( ) const;

戻り値

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

Traits の詳細に hash_set Class のトピックを参照してください。

解説

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

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

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

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

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

使用例

// hash_set_key_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> > >::key_compare kc1
          = hs1.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 hs1."
           << endl;
   }
   else
   {
      cout << "kc1( 2,3 ) returns value of false "
           << "where kc1 is the function object of hs1."
        << endl;
   }

   hash_set <int, hash_compare < int, greater<int> > > hs2;
   hash_set<int, hash_compare < int, greater<int> > >::key_compare
         kc2 = hs2.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 hs2."
           << endl;
   }
   else
   {
      cout << "kc2( 2,3 ) returns value of false, "
           << "where kc2 is the function object of hs2."
           << endl;
   }
}

出力

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

必要条件

ヘッダー: <hash_set>

名前空間: のstdext

参照

関連項目

hash_set Class

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