Question: Please do this as simple as possible, and if you can add some comments explaining things that would be amazing. thank you. Implement the Shape
Please do this as simple as possible, and if you can add some comments explaining things that would be amazing. thank you.
Implement the Shape hierarchy shown in the figure below. Shape TwoDimensionalShape Three DimensionalShape Circle Square Triangle Sphere Cube Tetrahedron Inheritance hierarchy UML class diagram for Shapes. Note: Make Shape, TwoDimensional Shape and Three Dimensional Shape classes abstract! The TwoDimensional Shape class should contain method getArea to calculate the area of the two-dimensional shape. The Three DimensionalShape class should have abstract methods getArea and getVolume to calculate the surface area and volume, respectively, of the three-dimensional shape. Create three concrete child classes with at least one class derived from TwoDimensional Shape class, and at least one class derived from Three Dimensional Shape class. For example, you may define Circle, Triangle and Sphere classes. Or, say, you would create Triangle, Cube and Tetrahedron. Then, create a driver program that uses an array of Shape references to objects of each concrete class in the hierarchy. o The program should print a text description of the object to which each array element refers. . Also, in the loop that processes all the shapes in the array, determine whether each shape is a TwoDimensionalShape or a Three DimensionalShape. o If it's a TwoDimensional Shape, display its area. o If it's a Three DimensionalShape, display its area and volume. You can explore the getParent() method if you need to
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
