bad_cast 例外狀況
bad_cast擲回例外狀況的dynamic_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();
}
}
因為正在轉換的物件 (圖形) 不衍生自指定的轉換型別 (圓形),則會擲回例外狀況。 若要避免此例外狀況,將加入這些宣告來main:
Circle circle_instance;
Circle& ref_circle = circle_instance;
又倒轉在轉型,因為try封鎖,如下所示:
Shape& ref_shape = dynamic_cast<Shape&>(ref_circle);