Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Implement the Shape hierarchy shown in Fig. 1. Each TwoDimensionalShape should contain method getArea to calculate the area of the two-dimensional shape. Each Three DimensionalShape
Implement the Shape hierarchy shown in Fig. 1. Each TwoDimensionalShape should contain method getArea to calculate the area of the two-dimensional shape. Each Three DimensionalShape should have methods getArea and getVolume to calculate the surface area and volume, respectively, of the three- dimensional shape. Create a program that uses an array of Shape references to objects of each concrete class in the hierarchy. 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 Two DimensionalShape or a Three DimensionalShape. If a shape is a TwoDimensionalShape, display its area. If a shape is a ThreeDimensionalShape, display its area and volume. In your design you must define the class Shape is an abstract class. Your output should appear as follows: Your output should appear as follows: Circle: [22, 88) radius: 4 Circle's area is 50 Square: [71, 96] side: 10 Square's area is 100 Sphere: (8, 89] radius: 2 Sphere's area is 50 Sphere's volume is 33 Cube: [79, 61] side: 8 Cube's area is 384 Cube's volume is 512 Shape TwoDimensionalShape Three DimensionalShape Circle Square Triangle Sphere Cube Cube Tetrahedron Tetrahedron Figure 1: Inheritance hierarchy UML class diagram for Shapes
Step 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