设计一个表示二维平面上的点的类 Point,包含表示坐标位置的 protected 类型的成员变量 x 和 y,以及获取和设置 x 和 y 的值的 public 类型的方法: getx()、gety()、setx()、sety()。Point 类的构造方法要有多种形式。 可以输入Java代码,也可以将代码写在纸上拍照上传。
时间: 2023-03-29 08:02:08 浏览: 273
11-19-PointClass:创建一个名为 Point 的类,该类将二维空间中某个位置的 (x, y) 坐标存储为整数
Point 类的 Java 代码如下:
```
public class Point {
protected int x;
protected int y;
public Point() {
this.x = ;
this.y = ;
}
public Point(int x, int y) {
this.x = x;
this.y = y;
}
public int getx() {
return this.x;
}
public int gety() {
return this.y;
}
public void setx(int x) {
this.x = x;
}
public void sety(int y) {
this.y = y;
}
}
```
以上是关于 Point 类的设计,其中包含了多种构造方法,可以根据需要进行选择。同时,该类还包含了获取和设置 x 和 y 坐标的方法,以及对应的成员变量。
阅读全文