python定义一个圆柱体类Cylinder,包含底面半径和高两个属性(数据成员);包含一个可以计算圆柱体体积的方法。然后编写相关程序测试相关功能。
时间: 2023-06-17 09:05:25 浏览: 254
C++虚函数计算圆锥球体和圆柱体体积共4页.pdf-文档整
5星 · 资源好评率100%
以下是一个实现圆柱体类Cylinder的Python代码:
```python
import math
class Cylinder:
def __init__(self, radius, height):
self.radius = radius
self.height = height
def volume(self):
return math.pi * self.radius ** 2 * self.height
```
在这个类中,我们定义了一个构造函数 `__init__`,它接受底面半径和高作为参数,并将它们保存为类的数据成员。我们还定义了一个计算圆柱体体积的方法 `volume`,它使用圆柱体的半径和高计算体积并返回结果。
可以使用以下代码测试这个类:
```python
c = Cylinder(3, 5)
print("底面半径为", c.radius)
print("高为", c.height)
print("圆柱体体积为", c.volume())
```
这将输出以下信息:
```
底面半径为 3
高为 5
圆柱体体积为 141.3716694115407
```
阅读全文