次の方法で共有


set::value_comp

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

value_compare value_comp( ) const;

戻り値

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

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

解説

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

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

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

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

使用例

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

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

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

必要条件

ヘッダー: <set>

名前空間: std

参照

関連項目

set Class

set::key_comp と set::value_comp

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