次の方法で共有


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

参照

関連項目

<unordered_map>

unordered_multimap クラス

その他の技術情報

<unordered_map> メンバー