Question: c++ Suppose the class Hero is derived from the class Actor. Consider these statements: Actor* ac = new Actor; Hero* hr = new Hero; ac
c++
Suppose the class Hero is derived from the class Actor. Consider these statements: Actor* ac = new Actor; Hero* hr = new Hero; ac = hr; What happens at the ac = hr assignment? It is a compile-time error. A Hero object is sliced to an Actor object. A derived-class pointer is assigned to a base-class pointer. It is a run-time error
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
