共用方式為


hash_set::upper_bound (STL/CLR)

符合指定之索引鍵的範圍中尋找結尾。

    iterator upper_bound(key_type key);

參數

  • Key - 索引鍵
    要搜尋的索引鍵值。

備註

成員函式來判斷在個項目且雜湊至與 key 相同 Bucket 的項目 key的受控制序列的最後一個項目的 X 。 如果沒有這類項目,則為,如果 X 是在受控制序列的最後一個項目,則會傳回 hash_set::end (STL/CLR)();否則會指定在 X之外的第一個項目的 Iterator 傳回它。 您可以使用它目前所在項目的結尾符合指定索引鍵受控制序列。

範例

// cliext_hash_set_upper_bound.cpp 
// compile with: /clr 
#include <cliext/hash_set> 
 
typedef cliext::hash_set<wchar_t> Myhash_set; 
int main() 
    { 
    Myhash_set 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("upper_bound(L'x')==end() = {0}", 
        c1.upper_bound(L'x') == c1.end()); 
 
    System::Console::WriteLine("*upper_bound(L'a') = {0}", 
        *c1.upper_bound(L'a')); 
    System::Console::WriteLine("*upper_bound(L'b') = {0}", 
        *c1.upper_bound(L'b')); 
    return (0); 
    } 
 
  

需求

標題: <cliext/hash_set>

命名空間: cliext

請參閱

參考

hash_set (STL/CLR)

hash_set::count (STL/CLR)

hash_set::equal_range (STL/CLR)

hash_set::find (STL/CLR)

hash_set::lower_bound (STL/CLR)