Condividi tramite


set::key_comp

Recupera una copia dell'oggetto di confronto utilizzato alle chiavi di ordinamento in un gruppo.

key_compare key_comp( ) const;

Valore restituito

Restituisce l'oggetto funzione che un set utilizza per ordinare gli elementi, che è il parametro di template Traits.

Per ulteriori informazioni su Traits vedere l'argomento set Class.

Note

L'oggetto memorizzato definisce la funzione membro:

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

quali restituisce true se _xVal precede e non è uguale a _yVal ordinati.

Si noti che sia key_compare che value_compare sono sinonimi per il parametro di template Traits.Entrambi i tipi sono forniti per le classi di multi-insieme quindi su, in cui sono identici, per compatibilità con le classi di multimap e il mapping, in cui sono diversi.

Esempio

// 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;
   }
}
  
  

Requisiti

intestazione: <set>

Spazio dei nomi: deviazione standard

Vedere anche

Riferimenti

set Class

set::key_comp e set::value_comp

Libreria di modelli standard