Condividi tramite


hash_multiset::value_comp

[!NOTA]

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

Recupera una copia dell'oggetto di confronto utilizzato per i valori degli elementi di ordinamento in un hash_multiset.

value_compare value_comp( ) const;

Valore restituito

Restituisce il parametro di template Traitsdi hash_multiset, che contiene gli oggetti funzione utilizzati per l'hashing e ordinare gli elementi contenitore.

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

Note

L'oggetto memorizzato definisce una funzione membro:

bool operator(constKey&_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 il hash_multiset e di hash_multiset, 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_multiset_value_comp.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>

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

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

Requisiti

intestazione: <hash_set>

Stdext diSpazio dei nomi:

Vedere anche

Riferimenti

hash_multiset Class

Libreria di modelli standard