set::key_comp
Získá kopii porovnání objekt použitý k pořadí klíče v sadě.
key_compare key_comp( ) const;
Vrácená hodnota
Vrátí funkce objekt, který používá sadu objednat jeho prvků, což je parametr šablony Traits.
Další informace o Traits najdete set – třída téma.
Poznámky
Uložené objektu definuje členskou funkci:
bool operator()(const Key& _xVal, const Key& _yVal);
která vrátí true li _xVal předchází a není rovno _yVal v pořadí řazení.
Všimněte si, že obě key_compare a value_compare jsou synonyma pro parametr šablony znaky.Oba typy jsou k dispozici pro sadu a Multimnožinové třídy, jsou-li shodné pro kompatibilitu s mapy a multimap třídy, pokud jsou odlišné.
Příklad
// 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;
}
}
Požadavky
Hlavička: <set>
Obor názvů: std