定义并实现一个矩形类,有长、宽两个属性,由成员函数计算矩形的面积。
时间: 2024-05-09 17:21:10 浏览: 160
定义一个名为rectangle 的矩形类,其属性数据为矩形左上角和右上角的点的坐标能计算矩形的面积
5星 · 资源好评率100%
```python
class Rectangle:
def __init__(self, length, width):
self.length = length
self.width = width
def get_area(self):
return self.length * self.width
```
使用示例:
```python
rect = Rectangle(4, 5)
print(rect.get_area()) # 输出 20
```
阅读全文