Programming Fundamentals II - JAVA Lab #8-Polymorphism NAME Problem: Develop the 'Shape' application such that: Implement an array of objects of various types (all SIX classes), in any order. In some type of a looping structure, demonstrate polymorphism by calling all three of the methods, draw, move, and erase. That is, within the curly braces, there will Verify that the output messages come from all three methods, from all seven classes The only class that you should have to develop for this class will be the test application. The six shape classes from Lab-7 should remain unchanged. Due Date: TBD Note: There will be no late labs!!

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:
 Implement an array of objects of various types (all SIX classes), in any order.
 In some type of a looping structure, demonstrate polymorphism by calling all three
of the methods, draw, move, and erase. That is, within the curly braces, there will
be only three method calls.
 Verify that the output messages come from all three methods, from all seven
classes.
 The only class that you should have to develop for this class will be the test
application. The six shape classes from Lab-7 should remain unchanged.

----------------------------------------------------------------------------------------------------------------------------------------------------------------------classes used in lab 7:

//----------------------------------------------------------------------
// SHAPE
//----------------------------------------------------------------------

class Shape
{
public Shape()
{
System.out.println("Shape class - contructor");
}
public void draw()
{
System.out.println("Shape - draw method");
}
public void move()
{
System.out.println("Shape - move method");
}
public void erase()
{
System.out.println("Shape - erase method");
}
}

//----------------------------------------------------------------------
// RECTANGLE
//----------------------------------------------------------------------

class Rectangle extends Shape{
public Rectangle()
{
System.out.println("Rectangle class - constructor");
}
@Override
public void draw()
{
System.out.println("Rectangle - draw method");
}
@Override
public void move()
{
System.out.println("Rectangle - move method");
}
@Override
public void erase()
{
System.out.println("Rectangle - erase method");
}
}

//----------------------------------------------------------------------
// SQUARE
//----------------------------------------------------------------------

class Square extends Rectangle{
public Square()
{
System.out.println("Square class - constructor");
}
@Override
public void draw()
{
System.out.println("Square - draw method");
}
@Override
public void move()
{
System.out.println("Square - move method");
}
@Override
public void erase()
{
System.out.println("Square - erase method");
}
}

//----------------------------------------------------------------------
// ELLIPSE
//----------------------------------------------------------------------
class Ellipse extends Shape {
public Ellipse()
{
System.out.println("Ellipse class - constructor");
}
@Override
public void draw()
{
System.out.println("Ellipse - draw method");
}
@Override
public void move()
{
System.out.println("Ellipse - move method");
}
@Override
public void erase()
{
System.out.println("Ellipse - erase method");
}
}

//----------------------------------------------------------------------
// CIRCLE
//----------------------------------------------------------------------

class Circle extends Ellipse{
public Circle()
{
System.out.println("Circle class - constructor");
}
@Override
public void draw()
{
System.out.println("Circle - draw method");
}
@Override
public void move()
{
System.out.println("Circle - move method");
}
@Override
public void erase()
{
System.out.println("Circle - erase method");
}
}

//----------------------------------------------------------------------
// TRIANGLE
//----------------------------------------------------------------------

class Triangle extends Shape{
public Triangle()
{
System.out.println("Triangle class - contructor");
}
@Override
public void draw()
{
System.out.println("Triangle - draw method");
}
@Override
public void move()
{
System.out.println("Triangle - move method");
}
@Override
public void erase()
{
System.out.println("Triangle - erase method");
}
}

//----------------------------------------------------------------------
// SHAPETEST
//----------------------------------------------------------------------

public class ShapeTest {
public static void main(String args[]) {
Shape s = new Shape();
Rectangle r = new Rectangle();
Square sq = new Square();
Ellipse e = new Ellipse();
Circle c = new Circle();
Triangle t = new Triangle();
Shape[] shapes = {s,r,sq,e,c,t};
for(Shape shape:shapes)
{
shape.draw();
shape.move();
shape.erase();
}
}
}

 

 

 

 

Programming Fundamentals II - JAVA
Lab #8-Polymorphism
NAME
Problem: Develop the 'Shape' application such that:
Implement an array of objects of various types (all SIX classes), in any order.
In some type of a looping structure, demonstrate polymorphism by calling all three
of the methods, draw, move, and erase. That is, within the curly braces, there will
Verify that the output messages come from all three methods, from all seven
classes
The only class that you should have to develop for this class will be the test
application. The six shape classes from Lab-7 should remain unchanged.
Due Date: TBD
Note: There will be no late labs!!
Transcribed Image Text:Programming Fundamentals II - JAVA Lab #8-Polymorphism NAME Problem: Develop the 'Shape' application such that: Implement an array of objects of various types (all SIX classes), in any order. In some type of a looping structure, demonstrate polymorphism by calling all three of the methods, draw, move, and erase. That is, within the curly braces, there will Verify that the output messages come from all three methods, from all seven classes The only class that you should have to develop for this class will be the test application. The six shape classes from Lab-7 should remain unchanged. Due Date: TBD Note: There will be no late labs!!
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Reference Types in Function
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