std::bad_variant_access
来自 cppreference.com
定义在头文件 <variant> 中 |
||
class bad_variant_access : public std::exception |
(自 C++17 起) | |
std::bad_variant_access
是在以下情况下抛出的异常的类型
- std::get(std::variant) 使用与当前活动备选方案不匹配的索引或类型调用。
- std::visit 被调用以访问一个valueless_by_exception 的变体。
内容 |
[编辑] 成员函数
(构造函数) |
构造一个新的 bad_variant_access 对象(公共成员函数) |
operator= |
替换 bad_variant_access 对象(公共成员函数) |
what |
返回解释字符串 (公共成员函数) |
std::bad_variant_access::bad_variant_access
bad_variant_access() noexcept; |
(1) | (自 C++17 起) |
bad_variant_access( const bad_variant_access& other ) noexcept; |
(2) | (自 C++17 起) |
使用一个实现定义的空终止字节字符串构造一个新的 bad_variant_access
对象,该字符串可以通过 what() 访问。
1) 默认构造函数。
2) 复制构造函数。如果 *this 和 other 都具有动态类型
std::bad_variant_access
那么 std::strcmp(what(), other.what()) == 0.参数
other | - | 另一个要复制的异常对象 |
std::bad_variant_access::operator=
bad_variant_access& operator=( const bad_variant_access& other ) noexcept; |
(自 C++17 起) | |
使用 other 的内容进行赋值。如果 *this 和 other 都具有动态类型 std::bad_variant_access
那么赋值后 std::strcmp(what(), other.what()) == 0。
参数
other | - | 另一个要赋值的异常对象 |
返回值
*this
std::bad_variant_access::what
virtual const char* what() const noexcept; |
(自 C++17 起) | |
返回解释字符串。
参数
(无)
返回值
指向包含解释信息的空终止字符串的指针。该字符串适合转换为 std::wstring 并显示。该指针保证至少在获取该指针的异常对象被销毁之前或在异常对象上的非 const 成员函数(例如复制赋值运算符)被调用之前是有效的。
注释
实现允许但不强制要求覆盖 what()
。
从 std::exception 继承
成员函数
[虚拟] |
销毁异常对象 ( std::exception 的虚拟公共成员函数) |
[虚拟] |
返回解释字符串 ( std::exception 的虚拟公共成员函数) |
[编辑] 示例
运行此代码
#include <iostream> #include <variant> int main() { std::variant<int, float> v; v = 12; try { std::get<float>(v); } catch (const std::bad_variant_access& e) { std::cout << e.what() << '\n'; } }
可能的输出
bad_variant_access
[编辑] 另请参见
(C++17) |
读取给定索引或类型(如果类型是唯一的)的变体的值,在错误时抛出异常 (函数模板) |
(C++17) |
使用一个或多个 variant 持有的参数调用提供的函数对象(函数模板) |