multimap::value_comp
A função de membro retorna um objeto de função que determina a ordem dos elementos do multimap comparando seus valores chave.
value_compare value_comp( ) const;
Valor de retorno
Retorna o objeto de função de comparação que um multimap usa para ordenar seus elementos.
Comentários
Para um multimap m, se dois elementos e1(k1, d1) e e2(k2, d2) são objetos do tipo value_type, onde k1 e k2 são suas chaves do tipo key_type e d1 e d2 são seus tipos de dados mapped_type, então *m.*value_comp(e1, e2) é equivalente a *m.*key_comp(k1, k2).
Exemplo
// 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;
}
}
Requisitos
Cabeçalho: <map>
namespace: STD