std::expected<T,E>::value_or
来自 cppreference.com
主模板 |
||
template< class U > constexpr T value_or( U&& default_value ) const&; |
(1) | (自 C++23 起) |
template< class U > constexpr T value_or( U&& default_value ) &&; |
(2) | (自 C++23 起) |
如果存在预期值,则返回预期值,否则返回 default_value.
void 部分特化没有这些成员函数。
内容 |
[编辑] 参数
default_value | - | 如果 *this 不包含预期值,则要使用的值 |
[编辑] 返回值
1) has_value() ? **this : static_cast<T>(std::forward<U>(default_value))
2) has_value() ? std::move(**this) : static_cast<T>(std::forward<U>(default_value))
[编辑] 示例
本节不完整 原因:没有示例 |
[编辑] 另请参阅
返回预期值 (公有成员函数) |