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.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
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
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education