unordered_multimap::hasher
雜湊函式的類型。
typedef Hash hasher;
備註
這個型別是樣板參數 Hash的同義字。
範例
// std_tr1__unordered_map__unordered_multimap_hasher.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