Answered step by step
Verified Expert Solution
Link Copied!

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

image text in transcribedI 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 to

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Transact SQL Cookbook Help For Database Programmers

Authors: Ales Spetic, Jonathan Gennick

1st Edition

1565927567, 978-1565927568

More Books

Students also viewed these Databases questions