📄 circle.java
字号:
// Chapter 6 Exercises 1 & 2
public class Circle extends Shape {
private double radius; // Radius of circle.
// Constructors:
public Circle(Point center, double radius) {
// Center of the circle is the position:
position = new Point(center); // Store position - new Point object for independence.
this.radius = radius; // Store the radius.
}
// Overrides method inherited from Object:
public String toString() {
// Create a string representation of the object:
return "Circle: Center " + position + " Radius " + radius;
}
public void show() {
System.out.println("\n" + toString());
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -