map::upper_bound (STL/CLR)
指定したキーに一致する範囲の最後を検索します。
iterator upper_bound(key_type key);
パラメーター
- key
検索するキー値。
解説
メンバー関数は key等しい場合は、被制御シーケンスの最後の要素 X を決定します。そのような要素が存在しないか、 X が被制御シーケンスの最後の要素である場合、 map::end (STL/CLR)を返します(); それ以外の場合は Xを超える最初の要素を指定する反復子を返します。指定したキーに一致する被制御シーケンスの要素のシーケンスの末尾を現在の検索に使用します。
使用例
// cliext_map_upper_bound.cpp
// compile with: /clr
#include <cliext/map>
typedef cliext::map<wchar_t, int> Mymap;
int main()
{
Mymap c1;
c1.insert(Mymap::make_value(L'a', 1));
c1.insert(Mymap::make_value(L'b', 2));
c1.insert(Mymap::make_value(L'c', 3));
// display contents " [a 1] [b 2] [c 3]"
for each (Mymap::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());
Mymap::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);
}
必要条件
ヘッダー: <cliext/マップ>
名前空間: の cliext