C++ Type_info 库 - bad_cast
描述
它会在动态转换失败时引发异常。
声明
以下是 std::bad_cast 的声明。
C++98
class bad_cast;
C++11
class bad_cast;
参数
none
返回值
none
异常
No-throw guarantee − 这个成员函数从不抛出异常。
数据竞争
语言环境对象被修改。
示例
在下面的 std::bad_cast 示例中。
#include <iostream> #include <typeinfo> struct Foo { virtual ~Foo() {} }; struct Bar { virtual ~Bar() {} }; int main() { Bar b; try { Foo& f = dynamic_cast<Foo&>(b); } catch(const std::bad_cast& e) { std::cout << e.what() << '\n'; } }
输出应该是这样的 −
std::bad_cast