multimap::value_comp
La funzione membro restituisce un oggetto funzione che determina l'ordine degli elementi in un multimap confrontando i valori della chiave.
value_compare value_comp( ) const;
Valore restituito
Restituisce l'oggetto di funzione di confronto che un multimap utilizza per ordinare gli elementi.
Note
Per un multimap 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 sono di dati di tipo mapped_type, *il M.*value_comp(e1, e2) è equivalente *a M.*key_comp(k1, k2).
Esempio
// multimap_value_comp.cpp
// compile with: /EHsc
#include <map>
#include <iostream>
int main( )
{
using namespace std;
multimap <int, int, less<int> > m1;
multimap <int, int, less<int> >::value_compare vc1 = m1.value_comp( );
multimap<int,int>::iterator Iter1, Iter2;
Iter1= m1.insert ( multimap <int, int> :: value_type ( 1, 10 ) );
Iter2= m1.insert ( multimap <int, int> :: value_type ( 2, 5 ) );
if( vc1( *Iter1, *Iter2 ) == 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( *Iter2, *Iter1 ) == 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;
}
}
Requisiti
intestazione: <map>
Spazio dei nomi: deviazione standard