std::experimental::optional<T>::value_or
来自 cppreference.com
< cpp | experimental | optional
template< class U > constexpr T value_or( U&& default_value ) const&; |
(库基础 TS) | |
template< class U > constexpr T value_or( U&& default_value ) &&; |
(库基础 TS) | |
如果 *this 有值,则返回包含的值,否则返回 default_value.
1) 等效于 bool(*this) ? **this : static_cast<T>(std::forward<U>(default_value)).
2) 等效于 bool(*this) ? std::move(**this) : static_cast<T>(std::forward<U>(default_value)).
内容 |
[编辑] 参数
default_value | - | 如果 *this 为空,则使用此值 |
类型要求 | ||
-T 必须满足 CopyConstructible 的要求才能使用重载 (1)。 | ||
-T 必须满足 MoveConstructible 的要求才能使用重载 (2)。 | ||
-U&& 必须可转换为 T 。 |
[编辑] 返回值
如果 *this 有值,则为当前值,否则为 default_value.
[编辑] 异常
返回值 T
的选定构造函数抛出的任何异常。
[编辑] 示例
运行此代码
#include <cstdlib> #include <experimental/optional> #include <iostream> std::experimental::optional<const char*> maybe_getenv(const char* n) { if (const char* x = std::getenv(n)) return x; else return {}; } int main() { std::cout << maybe_getenv("MYPWD").value_or("(none)") << '\n'; }
可能的输出
(none)
[编辑] 参见
返回包含的值 (公共成员函数) |