hash_set::key_comp
注意事項 |
---|
這個 API 已經過時。這個選項是 unordered_set Class。 |
擷取雜湊簽章的物件複本。用來雜湊及排序 hash_set 的元素索引鍵值。
key_compare key_comp( ) const;
傳回值
傳回 hash_set 使用排序其項目,是樣板參數 Traits的函式物件。
如需 Traits 資訊請參閱 hash_set Class 主題。
備註
儲存物件定義成員函式:
bool operator(_xVal 的const Key& , const Key& _yVal);
要傳回 true ,如果 _xVal 前面並與在排序次序中的 _yVal 不相等。
請注意 key_compare 和 value_compare 是樣板參數的 Traits同義資料表。 兩個型別為 hash_set 和 hash_multiset 類別提供,因此對於使用 hash_map 和 hash_multimap 類別的相容性相同,,它們是不同的。
在 Visual C++ .NET Pocket PC, <hash_map> 和 <hash_set> 標頭檔 (Header File) 的成員不在 std 命名空間,,而是移至 stdext 命名空間。 如需詳細資訊,請參閱 stdext 命名空間。
範例
// 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;
}
}
Output
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.
需求
標題: <hash_set>
命名空間: stdext