Condividi tramite


hash_map::operator (STL/CLR)

Esegue il mapping di una chiave al valore mappato associato.

    mapped_type operator[](key_type key);

Parametri

  • chiave
    Valore della chiave da cercare.

Note

Le funzioni membro tenta di trovare un elemento con l'ordine equivalente a key.Se trova uno, restituisce il valore mappato associato, in caso contrario, inserisce value_type(key, mapped_type()) e restituisce l'oggetto associato (impostazione predefinita) ha eseguito il mapping del valore.Utilizzata per individuare un valore mappato alla chiave associata, o per assicurarsi che una voce esiste per la chiave se non viene trovato.

Esempio

// cliext_hash_map_operator_sub.cpp 
// compile with: /clr 
#include <cliext/hash_map> 
 
typedef cliext::hash_map<wchar_t, int> Myhash_map; 
int main() 
    { 
    Myhash_map c1; 
    c1.insert(Myhash_map::make_value(L'a', 1)); 
    c1.insert(Myhash_map::make_value(L'b', 2)); 
    c1.insert(Myhash_map::make_value(L'c', 3)); 
 
// display contents " [a 1] [b 2] [c 3]" 
    for each (Myhash_map::value_type elem in c1) 
        System::Console::Write(" [{0} {1}]", elem->first, elem->second); 
    System::Console::WriteLine(); 
 
    System::Console::WriteLine("c1[{0}] = {1}", 
        L'A', c1[L'A']); 
    System::Console::WriteLine("c1[{0}] = {1}", 
        L'b', c1[L'b']); 
 
// redisplay altered contents 
    for each (Myhash_map::value_type elem in c1) 
        System::Console::Write(" [{0} {1}]", elem->first, elem->second); 
    System::Console::WriteLine(); 
 
// alter mapped values and redisplay 
    c1[L'A'] = 10; 
    c1[L'c'] = 13; 
    for each (Myhash_map::value_type elem in c1) 
        System::Console::Write(" [{0} {1}]", elem->first, elem->second); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

Requisiti

intestazione: <cliext/hash_map>

Cliext diSpazio dei nomi:

Vedere anche

Riferimenti

hash_map (STL/CLR)

hash_map::find (STL/CLR)

hash_map::insert (STL/CLR)