std::bad_optional_access
来自 cppreference.com
在头文件 <optional> 中定义 |
||
class bad_optional_access; |
(自 C++17 起) | |
定义一种对象类型,当访问不包含值的可选对象时,由 std::optional::value 抛出。
继承关系图
内容 |
[编辑] 成员函数
(构造函数) |
构造一个新的 bad_optional_access 对象(公有成员函数) |
operator= |
替换 bad_optional_access 对象(公有成员函数) |
what |
返回解释性字符串 (公有成员函数) |
std::bad_optional_access::bad_optional_access
bad_optional_access() noexcept; |
(1) | (自 C++17 起) |
bad_optional_access( const bad_optional_access& other ) noexcept; |
(2) | (自 C++17 起) |
使用可通过 what() 访问的实现定义的以 null 结尾的字节字符串构造一个新的 bad_optional_access
对象。
1) 默认构造函数。
2) 复制构造函数。如果 *this 和 other 都是动态类型
std::bad_optional_access
,那么 std::strcmp(what(), other.what()) == 0.参数
other | - | 要复制的另一个异常对象 |
std::bad_optional_access::operator=
bad_optional_access& operator=( const bad_optional_access& other ) noexcept; |
(自 C++17 起) | |
将内容分配给 other 的内容。如果 *this 和 other 都是动态类型 std::bad_optional_access
,那么赋值后 std::strcmp(what(), other.what()) == 0。
参数
other | - | 要分配的另一个异常对象 |
返回值
*this
std::bad_optional_access::what
virtual const char* what() const noexcept; |
(自 C++17 起) | |
返回解释性字符串。
参数
(无)
返回值
指向包含解释性信息的以 null 结尾的字符串的指针。该字符串适合转换为 std::wstring 并显示为其。
注释
允许实现重写 what()
,但不强制要求。
从 std::exception 继承
成员函数
[虚拟] |
销毁异常对象 ( std::exception 的虚拟公有成员函数) |
[虚拟] |
返回解释性字符串 ( std::exception 的虚拟公有成员函数) |