Introduction to OOP | Chapter 16: Overriding : | next | previous | audio | real | text |
class Parent { public: Parent * clone () { return new Parent(); } }; class Child : public Parent { public: Child * clone () { return new Child(); } };No type errors can result from this change.