hash_multimap::lower_bound (STL/CLR)
尋找符合指定的索引鍵的範圍開始。
iterator lower_bound(key_type key);
參數
- Key - 索引鍵
若要搜尋的索引鍵值。
備註
成員函式會判斷第一個項目X在受控制序列的雜湊為相同的桶key且有相同順序來key。如果沒有這類項目就會存在,則會傳回hash_multimap::end (STL/CLR)()。 否則它會傳回 iterator,指派X。您可以用它來在受控制序列的比對指定的索引鍵中目前找出項目的序列的開頭。
範例
// cliext_hash_multimap_lower_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("lower_bound(L'x')==end() = {0}",
c1.lower_bound(L'x') == c1.end());
Myhash_multimap::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 >
Namespace: cliext
請參閱
參考
hash_multimap::count (STL/CLR)