Freigeben über


hash_multiset::key_comp

HinweisHinweis

Diese API ist veraltet.Die Alternative ist unordered_multiset Class.

Ruft eine Kopie des Vergleichsobjekts ab, das den Reihenfolgentasten in einem hash_multiset verwendet wird.

key_compare key_comp( ) const;

Rückgabewert

Gibt den hash_multiset Vorlagenparameter Traits zurück, der Funktionsobjekte enthält, die, um die Elemente des Containers zu hashen verwendet werden und zu sortieren.

Weitere Informationen zu Traits finden Sie im Thema hash_multiset Class.

Hinweise

Das gespeicherte Objekt definiert eine Memberfunktion:

bool operator(const Key& _xVal, const Key& _yVal);

das true zurückgibt, wenn _xVal nicht gleich _yVal in der Sortierreihenfolge vor und ist.

Beachten Sie, dass key_compare und value_compare Synonyme für den Vorlagenparameter Traits sind.Beide Typen werden für das hash_multiset und die hash_multiset Klassen bereitgestellt, in denen sie, für die Kompatibilität mit den hash_map und hash_multimap Klassen identisch sind, in denen sie unterschiedlich sind.

In Visual C++ .NET 2003, sind Member der <hash_map> und <hash_set> Headerdateien nicht mehr im stdnamespace, sondern sind in den stdext Namespace verschoben wurde.Weitere Informationen finden Sie unter Der stdext-Namespace.

Beispiel

// hash_multiset_key_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> > >::key_compare kc1
          = hms1.key_comp( ) ;
   bool result1 = kc1( 2, 3 ) ;
   if( result1 == true )
   {
      cout << "kc1( 2,3 ) returns value of true, "
           << "where kc1 is the function object of hms1."
           << endl;
   }
   else
   {
      cout << "kc1( 2,3 ) returns value of false "
           << "where kc1 is the function object of hms1."
        << endl;
   }

   hash_multiset <int, hash_compare < int, greater<int> > > hms2;
   hash_multiset<int, hash_compare < int, greater<int> > >::key_compare
         kc2 = hms2.key_comp( ) ;
   bool result2 = kc2( 2, 3 ) ;
   if( result2 == true )
   {
      cout << "kc2( 2,3 ) returns value of true, "
           << "where kc2 is the function object of hms2."
           << endl;
   }
   else
   {
      cout << "kc2( 2,3 ) returns value of false, "
           << "where kc2 is the function object of hms2."
           << endl;
   }
}

Ausgabe

kc1( 2,3 ) returns value of true, where kc1 is the function object of hms1.
kc2( 2,3 ) returns value of false, where kc2 is the function object of hms2.

Anforderungen

Header: <hash_set>

Namespace: stdext

Siehe auch

Referenz

hash_multiset Class

Standardvorlagenbibliothek