In the following code, while construction of obj in case 1 we would any how construct derived class too but it's member functions are just inaccessible to obj. So while down-
casting ( i.e., in case 2 ) , using obj as source, we any how has the constructed derived in it. Why would it require obj needs to be polymorphic?
If I confused you with my above description, Why in upcast obj need not to be polymorphic but while downcast it needs to be while using dynamic_cast ?
class base
{
public:
base()
{
cout<< " \n base constructor \n";
}
};
class derived:public base
{
public:
derived()
{
cout <<" \n derived constructor \n";
}
};
base *obj = dynamic_cast<base*> (new derived) ; // case 1: explicitly upcasting
derived *OBJ = dynamic_cast<derived*> (obj) ; // case 2: error
Thanks.