查找与指定键匹配的元素。
hasher^ hash_delegate();
备注
成员函数返回委托用于转换键值转换为整数。使用到哈希键。
示例
// cliext_hash_map_hash_delegate.cpp
// compile with: /clr
#include <cliext/hash_map>
typedef cliext::hash_map<wchar_t, int> Myhash_map;
int main()
{
Myhash_map c1;
Myhash_map::hasher^ myhash = c1.hash_delegate();
System::Console::WriteLine("hash(L'a') = {0}", myhash(L'a'));
System::Console::WriteLine("hash(L'b') = {0}", myhash(L'b'));
return (0);
}
要求
标题: <cliext/hash_map>
命名空间: cliext