Question: Lab 2 - Objects and Classes (2) Design and implementing Java Classes 1. Design a class named Square to represent a square. The class contains:
Lab 2 - Objects and Classes (2) Design and implementing Java Classes 1. Design a class named Square to represent a square. The class contains: One double data field named side that specify the side's length of the square. The default value is 1 for side's length. Ano-arg constructor that creates a default square. A constructor that creates a square with the specified side's length. A method named getArea() that returns the area of this square. A method named getPerimeter() that returns the perimeter of this square. 2. Draw the UML diagram for the class and then implement the class. For more details about UML diagrams see the UMLNotation.pdf" by Y. Daniel Liang, located in LabFiles folder. Discuss: Should the class Square have a main method? Use lab_02 as the name of this Java Application project. 3. Write a test program called TestSquare that: Creates two Square objects: one object with side's length 5 and the other object with side's length 5.75. Display the side's length, area, and perimeter of each square object in this order
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
