set::lower_bound (STL/CLR)
尋找符合指定索引鍵的項目範圍的開頭。
iterator lower_bound(key_type key);
參數
- Key - 索引鍵
要搜尋的索引鍵值。
備註
成員函式來判斷在相同 Bucket 的項目為 key之受控制序列的第一個項目的 X 。 如果沒有此類項目存在,便會傳回 set::end (STL/CLR)();否則會指定 X的會傳回 Iterator。 您可以使用它目前所在項目的開頭符合指定索引鍵受控制序列。
範例
// cliext_set_lower_bound.cpp
// compile with: /clr
#include <cliext/set>
typedef cliext::set<wchar_t> Myset;
int main()
{
Myset 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("lower_bound(L'x')==end() = {0}",
c1.lower_bound(L'x') == c1.end());
System::Console::WriteLine("*lower_bound(L'a') = {0}",
*c1.lower_bound(L'a'));
System::Console::WriteLine("*lower_bound(L'b') = {0}",
*c1.lower_bound(L'b'));
return (0);
}
需求
標題: <cliext/設定>
命名空間: cliext