欢迎来到代码驿站!

C代码

当前位置:首页 > 软件编程 > C代码

解析C++编程中的bad_cast异常

时间:2022-01-17 10:49:22|栏目:C代码|点击:

由于强制转换为引用类型失败,dynamic_cast 运算符引发 bad_cast 异常。
语法

catch (bad_cast)
  statement

备注
bad_cast 的接口为:

class bad_cast : public exception {
public:
  bad_cast(const char * _Message = "bad cast");
  bad_cast(const bad_cast &);
  virtual ~bad_cast();
};

以下代码包含失败的 dynamic_cast 引发 bad_cast 异常的示例。

// expre_bad_cast_Exception.cpp
// compile with: /EHsc /GR
#include <typeinfo.h>
#include <iostream>

class Shape {
public:
  virtual void virtualfunc() const {}
};

class Circle: public Shape {
public:
  virtual void virtualfunc() const {}
};

using namespace std;
int main() {
  Shape shape_instance;
  Shape& ref_shape = shape_instance;
  try {
   Circle& ref_circle = dynamic_cast<Circle&>(ref_shape); 
  }
  catch (bad_cast b) {
   cout << "Caught: " << b.what();
  }
}

由于强制转换的对象 (Shape) 不是派生自指定的强制转换类型 (Circle),因此引发异常。若要避免此异常,请将下列声明添加到 main:

Circle circle_instance;
Circle& ref_circle = circle_instance;

然后在 try 块中反转强制转换的意义,如下所示:

Shape& ref_shape = dynamic_cast<Shape&>(ref_circle);

上一篇:C语言 实现N阶乘的程序代码

栏    目:C代码

下一篇:简单掌握桶排序算法及C++版的代码实现

本文标题:解析C++编程中的bad_cast异常

本文地址:http://www.codeinn.net/misctech/190478.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有