unordered_multimap::hash_function
获取存储的哈希函数对象。
Hash hash_function() const;
备注
成员函数返回存储的哈希函数对象。
示例
// std_tr1__unordered_map__unordered_multimap_hash_function.cpp
// compile with: /EHsc
#include <unordered_map>
#include <iostream>
typedef std::unordered_multimap<char, int> Mymap;
int main()
{
Mymap c1;
Mymap::hasher hfn = c1.hash_function();
std::cout << "hfn('a') == " << hfn('a') << std::endl;
std::cout << "hfn('b') == " << hfn('b') << std::endl;
return (0);
}
要求
标头: <unordered_map>
命名空间: std