次の方法で共有


set::key_comp

セットで使用される順序のキーに比較オブジェクトのコピーを取得します。

key_compare key_comp( ) const;

戻り値

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

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

解説

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

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

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

key_comparevalue_compare の両方が Traitsテンプレート パラメーターのシノニムであることに注意してください。どちらの型も明確な、マップ、multimap のクラスとの互換性のために、同一であると複数の設定セット クラスに提供されます。

使用例

// set_key_comp.cpp
// compile with: /EHsc
#include <set>
#include <iostream>

int main( )
{
   using namespace std;
   
   set <int, less<int> > s1;
   set<int, less<int> >::key_compare kc1 = s1.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 s1."
           << endl;
   }
   else   
   {
      cout << "kc1( 2,3 ) returns value of false "
           << "where kc1 is the function object of s1."
           << endl;
   }

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

必要条件

ヘッダー: <set>

名前空間: std

参照

関連項目

set Class

set::key_comp と set::value_comp

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