hash_map::value_comp
[!NOTA]
Questo API è obsoleto.L'alternativa consiste unordered_map Class.
Restituisce un oggetto funzione che determina l'ordine degli elementi in un hash_map confrontando i valori della chiave.
value_compare value_comp( ) const;
Valore restituito
Restituisce l'oggetto di funzione di confronto che un hash_map utilizza per ordinare gli elementi.
Note
Per un hash_map m., se due elementi e1(k1, d1) e e2(k2, d2) sono oggetti di tipo value_type, in cui k1e k2sono le chiavi di tipo key_type e d1 e 2 è di dati di tipo mapped_type, quindi M.value_comp) (e1, e2) è equivalente a M.key_comp() (k1, a k2).Un oggetto archiviato definisce la funzione membro
bool operator(value_type& _Left, value_type& _Right);
quali restituisce true se il valore della chiave _Left precede e non è uguale al valore della chiave _Right ordinati.
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_map_value_comp.cpp
// compile with: /EHsc
#include <hash_map>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_map <int, int, hash_compare<int, less<int> > > hm1;
hash_map <int, int, hash_compare<int, less<int> > >
::value_compare vc1 = hm1.value_comp( );
pair< hash_map<int,int>::iterator, bool > pr1, pr2;
pr1= hm1.insert ( hash_map <int, int> :: value_type ( 1, 10 ) );
pr2= hm1.insert ( hash_map <int, int> :: value_type ( 2, 5 ) );
if( vc1( *pr1.first, *pr2.first ) == true )
{
cout << "The element ( 1,10 ) precedes the element ( 2,5 )."
<< endl;
}
else
{
cout << "The element ( 1,10 ) does not precede the element ( 2,5 )."
<< endl;
}
if( vc1 ( *pr2.first, *pr1.first ) == true )
{
cout << "The element ( 2,5 ) precedes the element ( 1,10 )."
<< endl;
}
else
{
cout << "The element ( 2,5 ) does not precede the element ( 1,10 )."
<< endl;
}
}
Output
The element ( 1,10 ) precedes the element ( 2,5 ).
The element ( 2,5 ) does not precede the element ( 1,10 ).
Requisiti
intestazione: <hash_map>
Stdext diSpazio dei nomi: