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