Question: By using pure virtual functions, create a simple shape hierarchy in C++ that defines a base class called Shape and derived classes called Circle, Square,

By using pure virtual functions, create a simple “shape” hierarchy in C++ that defines a base class called Shape and derived classes called Circle, Square, and Triangle. In the base class, make a virtual function called draw( ), and override this in the derived classes. Make a pointer of Shape and objects of derived class and call draw( ) through the base-class pointers, to verify the behavior of the virtual function.

Step by Step Solution

3.44 Rating (167 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

include purgeh include include include include using namespace std class Shape public virtual void d... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Computer Engineering Questions!