T& at(const key_type& x);
const T& at(const key_type & x) const;
概要
指定したキーを持つ要素を取得する。
要素を取り出す際にキーの存在チェックをする。
戻り値
キーx
に対応する値を返す。対応する要素が存在しないときは、out_of_range
例外を投げる。
計算量
要素数に対して対数時間
例
#include <iostream>
#include <map>
#include <stdexcept>
template<class Container, class T>
void at_wrap(Container& c, T v)
{
try {
std::cout << c.at(v) << std::endl;
}
catch(std::out_of_range&) {
std::cout << "exception std::out_of_range" << std::endl;
}
}
int main()
{
std::map<int,char> m;
m.insert(std::make_pair(1, 'a'));
at_wrap(m, 1);
at_wrap(m, 2);
return 0;
}
出力
a
exception std::out_of_range
処理系
- Clang: 3.0 ✅
- GCC: 4.3.6 ✅
- ICC: ??
- Visual C++: 2012 ✅
関連項目
名前 | 説明 |
---|---|
operator= |
代入演算子 |
insert |
要素を挿入する |