I have the following scenario. There are two Base classes: Base1, Base2 and two derived classes: Derived, sysCommandExecutor which are derived as follows:
#include <iostream>
using namespace std;
class Base1 { virtual void dummy() {} };
class Base2 { virtual void dumy() {} };
class Derived: virtual public Base1, public Base2
{ int a; };
class sysCommandExecutor : public Base2
{
public:
int b;
Base1 *ptr;
void func(void);
};
void sysCommandExecutor::func(void)
{
Derived *d;
d = dynamic_cast<Derived *>(ptr);
if (d == NULL)
std::cout << "This is NULL" << std::endl;
else
{
// Call a function of Derived class
}
}
int main () {
try {
sysCommandExecutor * sys = new sysCommandExecutor;
sys->func();
return 0;
}
}
I want to call this function of "Derived" class inside func but the dynamic_cast fails. I cannot create the function in the sysCommandExecutor class as that is someone else's code. How to make the ptr pointer in sysCommandExecutor class to point to Derived class object??
Thanks in advance
No errors or program output.– Gir Aug 12 '12 at 15:35ptris uninitialized. 3) There is no need fornewhere (let alone a leak). – Loki Astari Aug 12 '12 at 15:36Base1 *ptris NOT necessarily referencing aDerivedobject. Usually polymorphism will work the opposite direction, aDerived* dwould cast to aBase1 *orBase2*rather than the other way around. Consider, all Chevys are cars, but not all cars are Chevys. You are likely attempting the equivalent of casting a Ford to a Chevy. – MartyE Aug 13 '12 at 2:15