Partager via


hash_multimap::upper_bound (STL/CLR)

Fin de recherche de la plage qui correspond à une clé spécifiée.

    iterator upper_bound(key_type key);

Paramètres

  • key
    Valeur de clé à rechercher.

Notes

La fonction membre détermine le dernier élément X dans la séquence contrôlée qui effectue à la même compartiment qu' key et un classement équivalent à key.S'il n'existe aucun élément, ou si X est le dernier élément de la séquence contrôlée, elle retourne hash_multimap::end (STL/CLR)(); sinon elle retourne un itérateur qui indique le premier élément au delà d' X.Vous l'utilisez pour localiser la fin d'une séquence d'éléments actuellement dans la séquence contrôlée qui correspondent à une clé spécifiée.

Exemple

// cliext_hash_multimap_upper_bound.cpp 
// compile with: /clr 
#include <cliext/hash_map> 
 
typedef cliext::hash_multimap<wchar_t, int> Myhash_multimap; 
int main() 
    { 
    Myhash_multimap c1; 
    c1.insert(Myhash_multimap::make_value(L'a', 1)); 
    c1.insert(Myhash_multimap::make_value(L'b', 2)); 
    c1.insert(Myhash_multimap::make_value(L'c', 3)); 
 
// display contents " [a 1] [b 2] [c 3]" 
    for each (Myhash_multimap::value_type elem in c1) 
        System::Console::Write(" [{0} {1}]", elem->first, elem->second); 
    System::Console::WriteLine(); 
 
    System::Console::WriteLine("upper_bound(L'x')==end() = {0}", 
        c1.upper_bound(L'x') == c1.end()); 
 
    Myhash_multimap::iterator it = c1.upper_bound(L'a'); 
    System::Console::WriteLine("*upper_bound(L'a') = [{0} {1}]", 
        it->first, it->second); 
    it = c1.upper_bound(L'b'); 
    System::Console::WriteLine("*upper_bound(L'b') = [{0} {1}]", 
        it->first, it->second); 
    return (0); 
    } 
 
  

Configuration requise

en-tête :<cliext/hash_map>

Cliext del'espace de noms :

Voir aussi

Référence

hash_multimap (STL/CLR)

hash_multimap::count (STL/CLR)

hash_multimap::equal_range (STL/CLR)

hash_multimap::find (STL/CLR)

hash_multimap::lower_bound (STL/CLR)