Question
Implement a subclass Square that extends the Rectangle class. In the constructor, accept the x- and y-positions of the center and the side length of
Implement a subclass Square that extends the Rectangle class. In the constructor, accept the x- and y-positions of the center and the side length of the square and use constructor chaining when creating your square. Also use methods from Rectangle class whenever possible such as (setLocation and setSize). You may want to look up these methods in the documentation for the Rectangle class. Also supply another method getArea() that computes and returns the area of the square. Write a sample program that creates an ArrayList of 5 squares with random center points and random side lengths. It then prints out all squares (i.e., center point and side length, and their areas) using the toString method {be sure to override the toString method to print the ArrayList or each Square object in a proper format}.
Please type it in java with "super" and make sure it runs!
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started