Udostępnij za pośrednictwem


hash_multiset::value_comp

[!UWAGA]

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

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

value_compare value_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 kolejność elementów kontenera.

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

Uwagi

Obiekt przechowywanych definiuje funkcję członka:

bool operator(constKey&_xVal, const Key& _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_value_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> > >::value_compare
      vc1 = hms1.value_comp( );
   bool result1 = vc1( 2, 3 );
   if( result1 == true )
   {
      cout << "vc1( 2,3 ) returns value of true, "
           << "where vc1 is the function object of hms1."
           << endl;
   }
   else
   {
      cout << "vc1( 2,3 ) returns value of false, "
           << "where vc1 is the function object of hms1."
           << endl;
   }

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

Wymagania

Nagłówek: <hash_set>

Przestrzeń nazw: stdext

Zobacz też

Informacje

hash_multiset Class

Standardowa biblioteka szablonu