class Rectangle: def __init__(self, width, height): self.width = width self.height = height def getLength(self): return 2 * (self.width + self.height) def getArea(self): return self.width * self.heightrect = Rectangle(10, 20)print("矩形的周长为:", rect.getLength())print("矩形的面积为:", rect.getArea())Java语言
时间: 2023-11-29 16:05:08 浏览: 113
class_shape.zip_class Shape_shape类继承
你提供的是 Python 代码,不是 Java 代码。这段代码定义了一个矩形类 Rectangle,该类有两个属性 width 和 height,以及两个方法 getLength 和 getArea,分别用于计算矩形的周长和面积。在代码的最后,创建了一个 Rectangle 对象 rect,并调用了其两个方法。如果你需要 Java 版本的实现,可以参考下面的代码:
```java
public class Rectangle {
private int width;
private int height;
public Rectangle(int width, int height) {
this.width = width;
this.height = height;
}
public int getLength() {
return 2 * (this.width + this.height);
}
public int getArea() {
return this.width * this.height;
}
}
public static void main(String[] args) {
Rectangle rect = new Rectangle(10, 20);
System.out.println("矩形的周长为:" + rect.getLength());
System.out.println("矩形的面积为:" + rect.getArea());
}
```
阅读全文