std::flat_map<Key,T,Compare,KeyContainer,MappedContainer>::at
来自cppreference.com
T& at( const Key& key ); |
(1) | (C++23 起) |
const T& at( const Key& key ) const; |
(2) | (C++23 起) |
template< class K > T& at( const K& x ); |
(3) | (C++23 起) |
template< class K > const T& at( const K& x ) const; |
(4) | (C++23 起) |
返回到拥有指定键的元素被映射值的引用。如果没有这种元素,那么就会抛出 std::out_of_range 类型的异常。
1,2) 其键等价于 key。
3,4) 其键比较等价于 x 的值。如同以表达式 this->find(x)->second 获得到被映射值的引用。
表达式 this->find(x) 必须良构且具有确切定义的行为,否则其行为未定义。
这些重载只有在限定标识 Compare::is_transparent 合法并指代类型时才会参与重载决议。它允许调用此函数时无需构造
Key
的实例。参数
key | - | 要找到的元素的键 |
x | - | 可以透明地与键比较的任意类型的值 |
返回值
到所请求元素的被映射值的引用。
异常
复杂度
与容器大小成对数。
示例
运行此代码
#include <cassert> #include <iostream> #include <flat_map> struct LightKey { int o; }; struct HeavyKey { int o[1000]; }; // 容器必须使用 std::less<> (或其他透明比较器)以使用重载 (3,4)。 // 其中包括标准的重载,比如 std::string 与 std::string_view 之间的比较。 bool operator<(const HeavyKey& x, const LightKey& y) { return x.o[0] < y.o; } bool operator<(const LightKey& x, const HeavyKey& y) { return x.o < y.o[0]; } bool operator<(const HeavyKey& x, const HeavyKey& y) { return x.o[0] < y.o[0]; } int main() { std::flat_map<int, char> map{{1, 'a'}, {2, 'b'}}; assert(map.at(1) == 'a'); assert(map.at(2) == 'b'); try { map.at(13); } catch(const std::out_of_range& ex) { std::cout << "1) out_of_range::what(): " << ex.what() << '\n'; } #ifdef __cpp_lib_associative_heterogeneous_insertion // 透明比较的演示。 std::flat_map<HeavyKey, char, std::less<>> map2{{{1}, 'a'}, {{2}, 'b'}}; assert(map2.at(LightKey{1}) == 'a'); assert(map2.at(LightKey{2}) == 'b'); try { map2.at(LightKey{13}); } catch(const std::out_of_range& ex) { std::cout << "2) out_of_range::what(): " << ex.what() << '\n'; } #endif }
可能的输出:
1) out_of_range::what(): map::at: key not found 2) out_of_range::what(): map::at: key not found
参阅
访问或插入指定的元素 (公开成员函数) | |
寻找带有特定键的元素 (公开成员函数) |