Java设计盒子类CBox,显示盒子长宽高
时间: 2024-11-15 08:24:04 浏览: 8
在Java中,你可以创建一个名为"CBox"的设计模式,也就是一个表示三维盒子(Cube)的类。这个类通常会包含三个属性:长度(length),宽度(width) 和高度(height)。下面是一个简单的CBox类的示例:
```java
public class CBox {
private double length;
private double width;
private double height;
// 构造函数
public CBox(double length, double width, double height) {
this.length = length;
this.width = width;
this.height = height;
}
// 获取和设置属性的方法
public double getLength() {
return length;
}
public void setLength(double length) {
this.length = length;
}
public double getWidth() {
return width;
}
public void setWidth(double width) {
this.width = width;
}
public double getHeight() {
return height;
}
public void setHeight(double height) {
this.height = height;
}
// 可能会包含一些实用的方法,比如计算体积或表面积
public double getVolume() {
return length * width * height;
}
public double getSurfaceArea() {
return 2 * (length * width + length * height + width * height);
}
@Override
public String toString() {
return "CBox[length=" + length + ", width=" + width + ", height=" + height + "]";
}
}
```
阅读全文