b编写创建一个box类,其中包括长宽高,编写一个方法求长方体体积,编写测试类求给定尺寸5,4,3的长方体的体积 java
时间: 2024-09-20 14:09:29 浏览: 40
求3个长方体体积(类实现)
5星 · 资源好评率100%
在Java中,你可以创建一个名为`Box`的类,用于表示长方体,包含长度、宽度和高度属性,并提供计算体积的方法。下面是一个简单的示例:
```java
public class Box {
private double length;
private double width;
private double height;
// 构造函数
public Box(double length, double width, double height) {
this.length = length;
this.width = width;
this.height = height;
}
// 计算体积的方法
public double calculateVolume() {
return length * width * height;
}
}
// 测试类(TestBox)
public class TestBox {
public static void main(String[] args) {
// 创建一个Box对象并设置尺寸
Box box = new Box(5, 4, 3);
// 调用calculateVolume方法并打印结果
double volume = box.calculateVolume();
System.out.println("The volume of the box with dimensions 5x4x3 is: " + volume);
//
阅读全文