Aracılığıyla paylaş


hash_set::key_comp

Not

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

Karma ve öğe anahtarı değerleri içinde bir hash_set sipariş için kullanılan karma Nitelikler nesnesi, bir kopyasını alır.

key_compare key_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 Traits.

Daha fazla bilgi için Traits bkz: hash_set Class konu.

Notlar

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

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

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

Unutmayın, hem de key_compare ve value_compare eşanlamlıdır şablon parametresi için nitelikler. 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_key_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> > >::key_compare kc1
          = hs1.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 hs1."
           << endl;
   }
   else
   {
      cout << "kc1( 2,3 ) returns value of false "
           << "where kc1 is the function object of hs1."
        << endl;
   }

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

Çıktı

kc1( 2,3 ) returns value of true, where kc1 is the function object of hs1.
kc2( 2,3 ) returns value of false, where kc2 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