Condividi tramite


hash_set::key_comp

[!NOTA]

Questo API è obsoleto.L'alternativa consiste unordered_set Class.

Recupera una copia dei tratti di hash oggetto utilizzato per l'hashing e ordinare i valori della chiave dell'elemento in un hash_set.

key_compare key_comp( ) const;

Valore restituito

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

Per ulteriori informazioni su Traits vedere l'argomento hash_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 hash_multiset e di hash_set, in cui sono identici, per compatibilità con le classi di hash_multimap e di hash_map, in cui sono diversi.

In Visual C++ .NET 2003, i membri dei file di intestazione <hash_set> e <hash_map> non sono più nello spazio dei nomi di deviazione standard, ma sono stati spostati nello spazio dei nomi di stdext.Per ulteriori informazioni, vedere lo spazio dei nomi stdext.

Esempio

// hash_set_key_comp.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>

int main( )
{
   using namespace std;
   using namespace stdext;
   
   hash_set <int, hash_compare < int, less<int> > >hs1;
   hash_set<int, hash_compare < int, less<int> > >::key_compare kc1
          = hs1.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 hs1."
           << endl;
   }
   else
   {
      cout << "kc1( 2,3 ) returns value of false "
           << "where kc1 is the function object of hs1."
        << endl;
   }

   hash_set <int, hash_compare < int, greater<int> > > hs2;
   hash_set<int, hash_compare < int, greater<int> > >::key_compare
         kc2 = hs2.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 hs2."
           << endl;
   }
   else
   {
      cout << "kc2( 2,3 ) returns value of false, "
           << "where kc2 is the function object of hs2."
           << endl;
   }
}

Output

kc1( 2,3 ) returns value of true, where kc1 is the function object of hs1.
kc2( 2,3 ) returns value of false, where kc2 is the function object of hs2.

Requisiti

intestazione: <hash_set>

Stdext diSpazio dei nomi:

Vedere anche

Riferimenti

hash_set Class

Libreria di modelli standard