std::expected<T,E>::error
来自 cppreference.com
constexpr const E& error() const& noexcept; |
(1) | (自 C++23 起) |
constexpr E& error() & noexcept; |
(2) | (自 C++23 起) |
constexpr const E&& error() const&& noexcept; |
(3) | (自 C++23 起) |
constexpr E&& error() && noexcept; |
(4) | (自 C++23 起) |
访问 *this 中包含的意外值。
如果 has_value()
为 true,则行为未定义。
[编辑] 返回值
1,2)
unex
3,4) std::move(
unex
)[编辑] 示例
本节不完整 原因:没有示例 |
[编辑] 另请参阅
如果存在,则返回意外值,否则返回另一个值 (公共成员函数) | |
访问预期的值 (公共成员函数) | |
返回预期的值 (公共成员函数) | |
检查对象是否包含预期值 (公共成员函数) |