Programming Fundamentals II JAVA Lab #7-Inheritance NAME Problem: Develop the 'Shape' application such that: 'Rectangle', 'Ellipse', and 'Triangle' classes inherit from the 'Shape' class Develop the 'Square' and 'Circle' class where 'Square' inherits from 'Rectangle' and Circle' inherits from Ellipse'. 'Triangle' has no derived class. For each class, implement the overridden methods 'draw', 'move', and 'erase'. Each method should only have an output statement such as "Rectangle draw method" that will be displayed when the method is invoked Implement the default constructors for each class with a corresponding message to be displayed when invoked. No initializations are required; that is, the output message will be the only executable statement in the constructors Do not implement any other methods for these classes ( i.e., 'toString', 'equals', getters and setters ) Implement a 'ShapeTest' class which will instantiate an object of each class . Exercise each of the 'draw', 'move', and 'erase' methods of each class Remember to make sure that there is only a single class per file.

Programming Logic & Design Comprehensive
9th Edition
ISBN:9781337669405
Author:FARRELL
Publisher:FARRELL
Chapter11: More Object-oriented Programming Concepts
Section: Chapter Questions
Problem 10RQ
icon
Related questions
Question

Develop the ‘Shape’ application such that:
 ‘Rectangle’, ‘Ellipse’, and ‘Triangle’ classes inherit from the ‘Shape’ class.
 Develop the ‘Square’ and ‘Circle’ class where ‘Square’ inherits from ‘Rectangle’ and
‘Circle’ inherits from ‘Ellipse’. ‘Triangle’ has no derived class.
 For each class, implement the overridden methods ‘draw’, ‘move’, and ‘erase’. Each
method should only have an output statement such as “Rectangle – draw method”
that will be displayed when the method is invoked.
 Implement the default constructors for each class with a corresponding message to
be displayed when invoked. No initializations are required; that is, the output
message will be the only executable statement in the constructors.
 Do not implement any other methods for these classes ( i.e., ‘toString’, ‘equals’,
getters and setters ).
 Implement a ‘ShapeTest’ class which will instantiate an object of each class.
 Exercise each of the ‘draw’, ‘move’, and ‘erase’ methods of each class
 Remember to make sure that there is only a single class per file.

-----------------------------------------------------------------------------------

- 4 classes ( one of them is a default constructor)

-no initialization

-no instance data 

-no tostring 

-no return

-no arguments

only one output

-----------------------------------------------------------------------------------

Shape
Ellipse
Circle
Square
Triangle
Rectangle
ShapeTest
 
draw()
move()
erase()
 
In all 6 classes
main()
{
Shape s1 = new Shape();
Rectangle r1 = new Rectangle();
.... All the rest
s1.move();
s1.erase();
s1.draw();
r1.move();
r1.erase();
r1.draw();
... all the rest
}
USE JAVA
Programming Fundamentals II JAVA
Lab #7-Inheritance
NAME
Problem: Develop the 'Shape' application such that:
'Rectangle', 'Ellipse', and 'Triangle' classes inherit from the 'Shape' class
Develop the 'Square' and 'Circle' class where 'Square' inherits from 'Rectangle' and
Circle' inherits from Ellipse'. 'Triangle' has no derived class.
For each class, implement the overridden methods 'draw', 'move', and 'erase'. Each
method should only have an output statement such as "Rectangle draw method"
that will be displayed when the method is invoked
Implement the default constructors for each class with a corresponding message to
be displayed when invoked. No initializations are required; that is, the output
message will be the only executable statement in the constructors
Do not implement any other methods for these classes ( i.e., 'toString', 'equals',
getters and setters )
Implement a 'ShapeTest' class which will instantiate an object of each class
. Exercise each of the 'draw', 'move', and 'erase' methods of each class
Remember to make sure that there is only a single class per file.
Transcribed Image Text:Programming Fundamentals II JAVA Lab #7-Inheritance NAME Problem: Develop the 'Shape' application such that: 'Rectangle', 'Ellipse', and 'Triangle' classes inherit from the 'Shape' class Develop the 'Square' and 'Circle' class where 'Square' inherits from 'Rectangle' and Circle' inherits from Ellipse'. 'Triangle' has no derived class. For each class, implement the overridden methods 'draw', 'move', and 'erase'. Each method should only have an output statement such as "Rectangle draw method" that will be displayed when the method is invoked Implement the default constructors for each class with a corresponding message to be displayed when invoked. No initializations are required; that is, the output message will be the only executable statement in the constructors Do not implement any other methods for these classes ( i.e., 'toString', 'equals', getters and setters ) Implement a 'ShapeTest' class which will instantiate an object of each class . Exercise each of the 'draw', 'move', and 'erase' methods of each class Remember to make sure that there is only a single class per file.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 10 steps with 8 images

Blurred answer
Knowledge Booster
Developing computer interface
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,