Partager via


hash_multiset : : recherche (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 à un classement équivalent à key, la fonction membre retourne un itérateur indiquant un de ces éléments ; sinon il renvoie hash_multiset : : 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_multiset_find.cpp 
// compile with: /clr 
#include <cliext/hash_set> 
 
typedef cliext::hash_multiset<wchar_t> Myhash_multiset; 
int main() 
    { 
    Myhash_multiset c1; 
    c1.insert(L'a'); 
    c1.insert(L'b'); 
    c1.insert(L'c'); 
 
// display initial contents " a b c" 
    for each (wchar_t elem in c1) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
    System::Console::WriteLine("find {0} = {1}", 
        L'A', c1.find(L'A') != c1.end()); 
    System::Console::WriteLine("find {0} = {1}", 
        L'b', *c1.find(L'b')); 
    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_set>

Espace de noms cliext

Voir aussi

Référence

hash_multiset (STL/CLR)

hash_multiset : : equal_range (STL/CLR)

hash_multiset : : lower_bound (STL/CLR)

hash_multiset : : upper_bound (STL/CLR)