std::bad_cast
来自cppreference.com
在标头 <typeinfo> 定义
|
||
class bad_cast : public std::exception; |
||
此类型的异常,在 dynamic_cast 对引用类型的运行时检查失败(例如因为类型并非以继承关联)时抛出,以及若请求的刻面不存在于本地环境时从 std::use_facet 抛出。
继承图
成员函数
(构造函数) |
构造新的 bad_cast 对象 (公开成员函数) |
operator= |
替换 bad_cast 对象 (公开成员函数) |
what |
返回解释字符串 (公开成员函数) |
std::bad_cast::bad_cast
(1) | ||
bad_cast() throw(); |
(C++11 前) | |
bad_cast() noexcept; |
(C++11 起) | |
(2) | ||
bad_cast( const bad_cast& other ) throw(); |
(C++11 前) | |
bad_cast( const bad_cast& other ) noexcept; |
(C++11 起) | |
构造新的拥有实现定义的空终止字节字符串的 bad_cast
对象,字符串能通过 what() 访问。
1) 默认构造函数。
2) 复制构造函数。若
*this
与 other
均拥有动态类型 std::bad_cast
则 std::strcmp(what(), other.what()) == 0。 (C++11 起)参数
other | - | 要复制的另一异常对象 |
std::bad_cast::operator=
bad_cast& operator=( const bad_cast& other ) throw(); |
(C++11 前) | |
bad_cast& operator=( const bad_cast& other ) noexcept; |
(C++11 起) | |
以 other 的内容赋值。如果 *this 与 other 均拥有动态类型 std::bad_cast
,那么赋值后 std::strcmp(what(), other.what()) == 0。 (C++11 起)
参数
other | - | 用来赋值的另一异常对象 |
返回值
*this
std::bad_cast::what
virtual const char* what() const throw(); |
(C++11 前) | |
virtual const char* what() const noexcept; |
(C++11 起) | |
返回解释字符串。
参数
(无)
返回值
指向有解释信息的空终止字符串的指针。该字符串适合转换并显示为 std::wstring。保证该指针至少直到获得它来源的异常对象被销毁,或在该异常对象上调用非 const 成员函数(例如复制赋值运算符)为止一直有效。
注解
允许但不要求实现覆写 what()
。
继承自 std::exception
成员函数
[虚] |
销毁该异常对象 ( std::exception 的虚公开成员函数) |
[虚] |
返回解释性字符串 ( std::exception 的虚公开成员函数) |
示例
运行此代码
#include <iostream> #include <typeinfo> struct Foo { virtual ~Foo() {} }; struct Bar { virtual ~Bar() { std::cout << "~Bar\n"; } }; struct Pub : Bar { ~Pub() override { std::cout << "~Pub\n"; } }; int main() { Pub pub; try { [[maybe_unused]] Bar& r1 = dynamic_cast<Bar&>(pub); // OK, 向上转型 [[maybe_unused]] Foo& r2 = dynamic_cast<Foo&>(pub); // 抛出 } catch (const std::bad_cast& e) { std::cout << "e.what(): " << e.what() << '\n'; } }
可能的输出:
e.what(): std::bad_cast ~Pub ~Bar