hash_map : : recherche (STL/CLR)
Recherche un élément qui correspond à une clé spécifiée.
iterator find(key_type key);
Paramètres
- key
Valeur clé à rechercher.
Notes
Si au moins un élément dans la séquence contrôlée a un classement équivalent à key, la fonction membre renvoie un itérateur indiquant l'un de ces éléments ; sinon il renvoie hash_map : : fin (STL/CLR)(). Vous l'utilisez pour localiser un élément actuellement dans la séquence contrôlée qui correspond à une clé spécifiée.
Exemple
// cliext_hash_map_find.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("find {0} = {1}",
L'A', c1.find(L'A') != c1.end());
Myhash_map::iterator it = c1.find(L'b');
System::Console::WriteLine("find {0} = [{1} {2}]",
L'b', it->first, it->second);
System::Console::WriteLine("find {0} = {1}",
L'C', c1.find(L'C') != c1.end());
return (0);
}
Description
Remarquez que find ne garantit pas quel élément il trouve parmi plusieurs.
Configuration requise
En-tête : <cliext/hash_map>
Espace de noms cliext
Voir aussi
Référence
hash_map : : equal_range (STL/CLR)