用Java写一个矩形类
时间: 2023-05-21 15:07:33 浏览: 87
好的,以下是一个简单的矩形类的 Java 代码:
```
public class Rectangle {
private int length;
private int width;
public Rectangle(int length, int width) {
this.length = length;
this.width = width;
}
public int getLength() {
return length;
}
public void setLength(int length) {
this.length = length;
}
public int getWidth() {
return width;
}
public void setWidth(int width) {
this.width = width;
}
public int getArea() {
return length*width;
}
public int getPerimeter() {
return 2*(length+width);
}
public boolean isSquare() {
return length == width;
}
}
```
您可以使用以上代码定义一个 Rectangle 类,该类具有以下功能:
- 构造函数接收长度和宽度参数,并将它们存储在类中的私有变量中
- 公共方法可以访问长度和宽度变量并进行设置
- getArea() 方法返回矩形的面积
- getPerimeter() 方法返回矩形的周长
- isSquare() 方法返回矩形是否为正方形
希望这个代码对您有所帮助!
阅读全文