java创建cylider类的对象,设置圆柱的底面半径和高,并输出圆柱的体积Cylinder volume:3.14
时间: 2024-11-22 07:37:17 浏览: 8
在 Java 中,我们可以创建一个名为 `Cylinder` 的类,用于表示圆柱体,并包含属性如底面半径 `radius` 和高度 `height`。然后我们定义一个计算体积的方法 `calculateVolume()`。下面是一个简单的例子:
```java
public class Cylinder {
private double radius;
private double height;
// 构造函数接受底面半径和高度作为参数
public Cylinder(double radius, double height) {
this.radius = radius;
this.height = height;
}
// 计算圆柱体积的方法
public double calculateVolume() {
return Math.PI * Math.pow(radius, 2) * height; // 使用Math.PI来获取π值
}
// 主函数示例,用于演示如何创建对象并输出体积
public static void main(String[] args) {
Cylinder cylinder = new Cylinder(5.0, 10.0); // 设置圆柱的半径为5.0,高度为10.0
double volume = cylinder.calculateVolume(); // 计算体积
System.out.println("Cylinder volume: " + volume);
}
}
```
在这个例子中,如果输入的半径是 5.0,高度是 10.0,那么输出的圆柱体积将会是 `3.14 * 5^2 * 10`。
阅读全文