共用方式為


hash_map::lower_bound (STL/CLR)

尋找符合指定索引鍵的項目範圍的開頭。

    iterator lower_bound(key_type key);

參數

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

備註

成員函式指定受控制序列中第一個X雜湊至與 key 相同 Bucket 的項目,以及與 key 相等排序的項目。 如果沒有此類項目存在,便會傳回 hash_map::end (STL/CLR)();否則會指定 X的會傳回迭代器。 您可以使用它目前所在項目的開頭符合指定索引鍵受控制序列。

範例

// cliext_hash_map_lower_bound.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("lower_bound(L'x')==end() = {0}", 
        c1.lower_bound(L'x') == c1.end()); 
 
    Myhash_map::iterator it = c1.lower_bound(L'a'); 
    System::Console::WriteLine("*lower_bound(L'a') = [{0} {1}]", 
        it->first, it->second); 
    it = c1.lower_bound(L'b'); 
    System::Console::WriteLine("*lower_bound(L'b') = [{0} {1}]", 
        it->first, it->second); 
    return (0); 
    } 
 
  

需求

標頭: <cliext/hash_map>

命名空間: cliext

請參閱

參考

hash_map (STL/CLR)

hash_map::count (STL/CLR)

hash_map::equal_range (STL/CLR)

hash_map::find (STL/CLR)

hash_map::upper_bound (STL/CLR)