Circle 类
Java Circle 类 Circle类: /* *定义一个名为Circle的类表圆,其中含有double型的成员变量centerX、centerY表示圆心坐标,radius表示圆的半径。 *定义求圆面积的方法getArea()方法和求圆周长的方法getPerimeter()。 *为半径radius定义访问方法和修改方法。 *定义默认构造方法,在该方法中调用有参数构造方法,将圆的半径设置为1.0。 *编写程序测试这个圆类的所有方法。 */ public class Circle { private double centerX ; // x坐标 private double centerY ; // y坐标 private double radius ; // 半径 public Circle ( ) { // 构造函数 this ( 0.0 , 0.0 , 1.0 ) ; } public Circle ( double X , double Y , double R ) { // 带参构造函数 this . centerX = X ; this . centerY = Y ; this . radius = R ; } public double getRadius ( ) { // 设置半径 return this . radius ; } public void