Udostępnij za pośrednictwem


hash_multiset::key_comp

[!UWAGA]

Ten interfejs API jest nieaktualny.Alternatywą jest unordered_multiset Class.

Pobiera kopię obiektu porównania, służący do kolejności kluczy w hash_multiset.

key_compare key_comp( ) const;

Wartość zwracana

Zwraca wartość parametru hash_multiset Traits, który zawiera obiekty funkcji, które są używane do wyznaczania wartości skrótu i zamówić elementy kontenera.

Aby uzyskać więcej informacji na Traits zobacz hash_multiset Class tematu.

Uwagi

Obiekt przechowywanych definiuje funkcję członka:

BOOL operator(const klucz & _xVal, const klucz & _yVal);

które zwraca true czy _xVal poprzedza i nie jest równa _yVal w kolejności sortowania.

Należy zauważyć, że zarówno key_compare i value_compare są synonimami dla parametru cechy.Oba typy są przewidziane w hash_multiset i hash_multiset klas, gdzie są one identyczne, dla zachowania zgodności z klasy hash_map i hash_multimap, gdzie są one różne.

W Visual C++ .NET 2003, członkowie <hash_map> i <hash_set> pliki nagłówkowe są już w przestrzeni nazw std, ale raczej zostały przeniesione do obszaru nazw stdext.Zobacz stdext nazw uzyskać więcej informacji.

Przykład

// 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;
   }
}

Dane wyjściowe

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.

Wymagania

Nagłówek: <hash_set>

Przestrzeń nazw: stdext

Zobacz też

Informacje

hash_multiset Class

Standardowa biblioteka szablonu