java编写forward静态,带参数的构造函数(坐标x,坐标y,角度,颜色) 代码
时间: 2023-06-03 21:01:47 浏览: 61
java构造函数示例(构造方法)
可以提供一个参考实现如下:
```
public class Forward {
private int x;
private int y;
private int angle;
private String color;
public Forward(int x, int y, int angle, String color) {
this.x = x;
this.y = y;
this.angle = angle;
this.color = color;
}
public static void main(String[] args) {
Forward forward = new Forward(10, 20, 30, "red");
System.out.println("X: " + forward.getX() + ", Y: " + forward.getY() + ", Angle: " + forward.getAngle() + ", Color: " + forward.getColor());
}
public int getX() {
return x;
}
public int getY() {
return y;
}
public int getAngle() {
return angle;
}
public String getColor() {
return color;
}
}
```
该类有四个属性:x, y, angle, color。构造函数可以传入这四个属性的值,也即是带参数的构造函数。getX(), getY(), getAngle(), getColor() 方法用于获取属性值。在 main() 方法中,我们创建了一个 Forward 对象 forward,并打印其属性值。
阅读全文