Freigeben über


hash_multimap::value_comp

Hinweis

Diese API ist veraltet.Die Alternative ist unordered_multimap-Klasse.

Die Memberfunktion gibt ein Funktionsobjekt zurück, das die Reihenfolge der Elemente in einem hash_multimap bestimmt, indem es ihre Schlüsselwerte vergleicht.

value_compare value_comp( ) const;

Rückgabewert

Gibt den Vergleichsfunktionsobjekt zurück, dem ein hash_multimap verwendet, um ihre Elemente auf.

Hinweise

Ein hash_multimap m, wenn zwei Elemente e1(k1, d1) und e2(k2, d2) Objekte des Typs value_type sind, in dem k1 und k2 ihre Schlüssel des Typs key_type sind und d1 und d2 ihre Daten des Typs mapped_type sind, dann *M.*value_comp() (e1, e2) ist *zu M.*key_comp() (k1, zu k2) entsprechend. Ein gespeichertes Objekt definiert die Memberfunktion

bool operator_Left(value_type &, value_type &_Right);

welches true zurückgibt, wenn der Schlüsselwert von _Left ungleich den Tastenwert von _Right in der Sortierreihenfolge vor und ist.

In Visual C++ .NET 2003 sind Member der <hash_map> und <hash_set> Headerdateien nicht mehr im STD-Namespace enthalten. Sie wurden stattdessen in den stdext-Namespace verschoben. Weitere Informationen finden Sie unter Der stdext-Namespace.

Beispiel

// hash_multimap_value_comp.cpp
// compile with: /EHsc
#include <hash_map>
#include <iostream>

int main( )
{
   using namespace std;
   using namespace stdext;
   
   hash_multimap <int, int, hash_compare<int, less<int> > > hm1;
   hash_multimap <int, int, hash_compare<int, less<int> > 
      >::value_compare vc1 = hm1.value_comp( );
   hash_multimap <int,int>::iterator Iter1, Iter2;
   
   Iter1= hm1.insert ( hash_multimap <int, int> :: value_type ( 1, 10 ) );
   Iter2= hm1.insert ( hash_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;
   }
}

Ausgabe

The element ( 1,10 ) precedes the element ( 2,5 ).
The element ( 2,5 ) does not precede the element ( 1,10 ).

Anforderungen

Header: <hash_map>

Namespace: stdext

Siehe auch

Referenz

hash_multimap-Klasse

Standardvorlagenbibliothek