Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Define two derived classes of the abstract class ShapeBase in Your two classes will be called RightArrow and LeftArrow. These classes will be like the

Define two derived classes of the abstract class ShapeBase in Your two classes will be called RightArrow and LeftArrow. These classes will be like the classes Rectangle and Triangle, but they will draw arrows that point right and left, respectively. For example, the following arrow points to the right:

The size of the arrow is determined by two numbers, one for the length of the lair and one for the width of the arrowhead. (The width is the length of the vertical base.) The arrow shown here has a length of 16 and a width of 7. The width of the arrowhead cannot be an even number, so your constructors and mutator methods should check to make sure that it is always odd. Write a test program for each class that tests all the methods in the class. You can assume that the width of the base of the arrowhead is at least 3.

The Abstract Class ShapaBase

Abstract base class for drawing simple shapes on the screen using characters. public abstract class ShapeBase implements ShapeInterface { private int offset; public abstract void drawHere(); The rest of the class is identical to ShapeBasics in Listing 8.12, except for the names of the constructions. Only the method drawHere is abstract. Methods other than drawHere have bodies and do not have the keyword abstract in their headings. We repeat one such method here: public void drawAt(int lineNumber) { } for (int count = 0; count < lineNumber; count++) System.out.println(); drawHereO;

Step by Step Solution

3.32 Rating (152 Votes )

There are 3 Steps involved in it

Step: 1

Program Plan Use the interface Shapelnterface inorder to use the abstract class ShapeBase as describ... 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

College Physics

Authors: Raymond A. Serway, Jerry S. Faughn, Chris Vuille, Charles A. Bennett

7th Edition

9780534997236, 495113697, 534997236, 978-0495113690

More Books

Students also viewed these Programming questions

Question

2) What are the five states a process can be in

Answered: 1 week ago

Question

Explain the process of MBO

Answered: 1 week ago