özel durum bad_cast
bad_cast Tarafından özel durum dynamic_cast işleci bir başvuru türü için başarısız bir cast sonucu olarak.
catch (bad_cast)
statement
Notlar
Arabirim için bad_cast ise:
class bad_cast : public exception {
public:
bad_cast(const char * _Message = "bad cast");
bad_cast(const bad_cast &);
virtual ~bad_cast();
};
Aşağıdaki kod örneği başarısız içeren dynamic_cast , atar bad_cast özel durum.
// 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();
}
}
Artığını nesne (Şekil) (daire) belirtilen atama türünden türetilmemiş çünkü istisnası atılır. Özel durumu önlemek için bu bildirimleri eklemek main:
Circle circle_instance;
Circle& ref_circle = circle_instance;
Cast içinde duygusu ters try gibi engeller:
Shape& ref_shape = dynamic_cast<Shape&>(ref_circle);