Sdílet prostřednictvím


hash_multiset::key_comp

[!POZNÁMKA]

Toto rozhraní API je zastaralé.Alternativou je unordered_multiset Class.

Získá kopii porovnání objektu, který používá pořadí klíče hash_multiset.

key_compare key_comp( ) const;

Vrácená hodnota

Vrátí parametr šablony hash_multiset Traits, který obsahuje funkci objekty, které jsou použity hodnoty hash a pořadí prvků kontejneru.

Další informace o Traits najdete hash_multiset Class téma.

Poznámky

Definuje objekt uložené členskou funkci:

operátor BOOL(klíč const & _xVal, klíč const & _yVal);

která vrátí true li _xVal předchází a není rovno _yVal v pořadí řazení.

Všimněte si, že oba key_compare a value_compare jsou synonyma pro parametr šablony Vlastnosti.Oba typy jsou k dispozici pro hash_multiset a hash_multiset třídy, kde jsou shodné pro kompatibilitu s hash_map a hash_multimap třídy, kde jsou odlišné.

V aplikaci Visual C++ .NET 2003, členové <hash_map> a <hash_set> jsou již v oboru názvů std soubory hlaviček, ale spíše být přesunut do oboru názvů stdext.Viz stdext obor názvů Další informace.

Příklad

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

Výsledek

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.

Požadavky

Záhlaví: <hash_set>

Obor názvů: stdext

Viz také

Referenční dokumentace

hash_multiset Class

Standardní šablona knihovny