Aracılığıyla paylaş


hash_set::value_comp

Not

Bu API artık kullanılmıyor.Alternatif unordered_set Class.

Sipariş öğe değerlerinin bir hash_set içinde kullanılan karşılaştırma nesnenin bir kopyasını alır.

value_compare value_comp( ) const;

Dönüş Değeri

Şablon parametresi olan bir hash_set kendi öğeleri sipariş etmek için kullandığı işlevi nesnesi döndüren Compare.

Daha fazla bilgi için Compare, açıklamalar bölümüne bakın hash_set Class konu.

Notlar

Saklı nesne üye işlev tanımlar:

Boole işleci(const anahtar & _xVal, const Key& _yVal);

döndüren doğru , _xVal önce gelir ve eşit değil _yVal sıralama düzeninde.

Unutmayın, hem de value_compare ve key_compare eşanlamlıdır şablon parametresi için Compare. Her iki tür farklı olduğu hash_map ve hash_multimap sınıfları ile uyumluluk için özdeş oldukları hash_set ve hash_multiset sınıfları için sağlanır.

Visual C++ .NET 2003, üyeleri de <hash_map> ve <hash_set> başlık dosyaları artık std ad alanında bulunan, ancak bunun yerine stdext ad alanına taşınmış. Bkz: ad stdext daha fazla bilgi için.

Örnek

// hash_set_value_comp.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>

int main( )
{
   using namespace std;
   using namespace stdext;
   
   hash_set <int, hash_compare < int, less<int> > > hs1;
   hash_set <int, hash_compare < int, less<int> >  >::value_compare
      vc1 = hs1.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 hs1."
           << endl;
   }
   else
   {
      cout << "vc1( 2,3 ) returns value of false, "
           << "where vc1 is the function object of hs1."
           << endl;
   }

   hash_set <int, hash_compare < int, greater<int> > > hs2;
   hash_set<int, hash_compare < int, greater<int> > >::value_compare
      vc2 = hs2.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 hs2."
           << endl;
   }
   else
   {
      cout << "vc2( 2,3 ) returns value of false, "
           << "where vc2 is the function object of hs2."
           << endl;
   }
}

Çıktı

vc1( 2,3 ) returns value of true, where vc1 is the function object of hs1.
vc2( 2,3 ) returns value of false, where vc2 is the function object of hs2.

Gereksinimler

Başlık: <hash_set>

Ad alanı: stdext

Ayrıca bkz.

Başvuru

hash_set Class

Standart Şablon Kütüphanesi