写出一个Point类,该类具有x,y(表示点的横坐标、纵坐标)两个属性,并定义两个构造方法,第一个构造方法无参数,将x,y均设置为零,第二个构造方法使用坐标值为参数,设置x,y为给定坐标值,同时Point类包含show方法,show方法可以打印输出该类的x和y值。
时间: 2024-10-17 08:06:49 浏览: 35
```java
public class Point {
private int x;
private int y;
// 构造方法无参,用于初始化默认坐标(0,0)
public Point() {
this.x = 0;
this.y = 0;
System.out.println("创建了一个新的点,初始坐标 (0, 0)");
}
// 构造方法带参数,接受并存储给定的坐标值
public Point(int x, int y) {
this.x = x;
this.y = y;
System.out.println("创建了一个新的点,坐标 (" + x + ", " + y + ")");
}
// show方法,打印出点的坐标
public void show() {
System.out.println("当前点的坐标是: (" + x + ", " + y + ")");
}
}
```
阅读全文