Partager via


map::find (STL/CLR)

Recherche un élément qui correspond à une clé spécifiée.

    iterator find(key_type key);

Paramètres

  • key
    Valeur de clé à rechercher.

Notes

Si au moins un élément dans la séquence contrôlée a classer équivalent à key, la fonction membre retourne un itérateur indiquant un de ces éléments ; sinon elle retourne map::end (STL/CLR)().Vous l'utilisez pour placer un élément actuellement dans la séquence contrôlée qui correspond à une clé spécifiée.

Exemple

// cliext_map_find.cpp 
// compile with: /clr 
#include <cliext/map> 
 
typedef cliext::map<wchar_t, int> Mymap; 
int main() 
    { 
    Mymap c1; 
    c1.insert(Mymap::make_value(L'a', 1)); 
    c1.insert(Mymap::make_value(L'b', 2)); 
    c1.insert(Mymap::make_value(L'c', 3)); 
 
// display contents " [a 1] [b 2] [c 3]" 
    for each (Mymap::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()); 
 
    Mymap::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

Notez qu' find ne garantit pas lesquels plusieurs l'élément il recherche.

Configuration requise

en-tête :<cliext/carte>

Cliext del'espace de noms :

Voir aussi

Référence

map (STL/CLR)

map::equal_range (STL/CLR)

map::lower_bound (STL/CLR)

map::upper_bound (STL/CLR)