Partager via


hash_map : : hasher (STL/CLR)

Le délégué de hachage pour une clé.

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

Notes

Le type décrit un délégué qui convertit une valeur de clé en entier.

Exemple

// cliext_hash_map_hasher.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); 
    } 
 
  

Configuration requise

En-tête : <cliext/hash_map>

Espace de noms cliext

Voir aussi

Référence

hash_map (STL/CLR)

hash_map : : hash_delegate (STL/CLR)