java创造一个box类
时间: 2024-05-12 20:17:59 浏览: 42
好的,关于Java的问题,我可以回答。Box类可以用来创建一个箱子的模型。下面是一个简单的Box类的实现:
```java
public class Box {
private double width;
private double height;
private double depth;
public Box(double width, double height, double depth) {
this.width = width;
this.height = height;
this.depth = depth;
}
public double getVolume() {
return width * height * depth;
}
public double getWidth() {
return width;
}
public double getHeight() {
return height;
}
public double getDepth() {
return depth;
}
}
```
以上就是一个简单的Box类的实现。如果您有任何其他Java问题,请随时向我提问。
阅读全文