Suppose I have Derived* derivedPtr;
I want Base baseObject from the derivedPtr;
Base baseObject = *derivedPtr; would create the baseObject with the appropriate Base class member variables?
Thank you
Suppose I have Derived* derivedPtr;
I want Base baseObject from the derivedPtr;
Base baseObject = *derivedPtr; would create the baseObject with the appropriate Base class member variables?
Thank you
It is Object Slicing
Derived* obj = new Derived;
base objOne = (*obj) ; // Object slicing. Coping only the Base class sub-object
// that was constructed by eariler statement.
You can use dynamic casting to accomplish this.
e.g.
Base* baseObject = dynamic_cast<Base*>(derivedPtr);
Yes. That's actually called 'slicing', since you just slice off everything from the derived class.