multiset::key_comp
擷取用來比較物件的複製到命令輸入多重集。
key_compare key_comp( ) const;
傳回值
傳回多重集使用排序其項目,是樣板參數 Compare的函式物件。
如需 Compare,請參閱 multiset 類別 主題的 < 備註 > 一節。
備註
儲存物件的定義成員函式:
bool operator(const Key& const Key& x,y);
要傳回 true,如果 x 確實地在排序次序的 y 之前 。
請注意 key_compare 和 value_compare 是樣板參數的 Compare同義資料表。 兩個型別為設定的類別,並提供多重集,它們是相同的,與類別的相容性的對應和多重對應,其中它們是不同的。
範例
// multiset_key_comp.cpp
// compile with: /EHsc
#include <set>
#include <iostream>
int main( )
{
using namespace std;
multiset <int, less<int> > ms1;
multiset <int, less<int> >::key_compare kc1 = ms1.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 ms1."
<< endl;
}
multiset <int, greater<int> > ms2;
multiset <int, greater<int> >::key_compare kc2 = ms2.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 ms2."
<< endl;
}
else
{
cout << "kc2( 2,3 ) returns value of false, "
<< "where kc2 is the function object of ms2."
<< endl;
}
}
需求
標頭: <set>
命名空間: std