Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I already posted this question, you can probably find it for reference. I would like to see arrays implemented in the answer. Thank you. Implement
I already posted this question, you can probably find it for reference. I would like to see arrays implemented in the answer. 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 toStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started