共用方式為


set::key_comp

擷取集合中用來命令索引鍵比較物件的複本。

key_compare key_comp( ) const;

傳回值

傳回集合使用排序其項目,是樣板參數 Traits的函式物件。

如需 Traits 的詳細資訊,請參閱 set Class 主題。

備註

在屬性中定義的成員函式:

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

要傳回 true ,如果 _xVal 前面並與 _yVal 不相等的排序順序。

請注意 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

標準樣板程式庫