hash_multiset::hasher (STL/CLR)

密钥的哈希委托。

    Microsoft::VisualC::StlClr::UnaryDelegate<GKey, int>
        hasher;

备注

描述类型转换键值转换为整数的委托。

示例

// cliext_hash_multiset_hasher.cpp 
// compile with: /clr 
#include <cliext/hash_set> 
 
typedef cliext::hash_multiset<wchar_t> Myhash_multiset; 
int main() 
    { 
    Myhash_multiset c1; 
    Myhash_multiset::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_set>

命名空间: cliext

请参见

参考

hash_multiset (STL/CLR)

hash_multiset::hash_delegate (STL/CLR)