Question: You are given Point class. Circle class has center and radius as its field, where center is Point type and radius is int type. Circle
You are given Point class. Circle class has center and radius as its field, where center is Point type and radius is int type. Circle class also implements Cloneable and Comparable interfaces.
Also has two getter methods already implemented for you, which is getCenter and getRadius.
public class Circle implements Comparable{ private Point center; private int radius; public Point getCenter(){ return center; } public int getRadius(){ return radius; } ... }
1) Implement Circles constructor that takes a Point and an integer as the parameters and initializes center and radius with these parameters.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
