用java. 简答题 通过自定义方法分别实现求长方形的面积、长方体的体积。
时间: 2024-09-27 16:15:06 浏览: 47
良心出品Java简答题.doc
5星 · 资源好评率100%
在Java中,你可以通过定义两个独立的方法分别计算长方形的面积和长方体的体积。这里是一个简短的例子:
```java
public class Shape {
// 长方形类
public static class Rectangle {
private double length;
private double width;
// 构造函数
public Rectangle(double length, double width) {
this.length = length;
this.width = width;
}
// 计算面积的方法
public double getArea() {
return length * width;
}
}
// 长方体类
public static class Cuboid {
private double length;
private double width;
private double height;
// 构造函数
public Cuboid(double length, double width, double height) {
this.length = length;
this.width = width;
this.height = height;
}
// 计算体积的方法
public double getVolume() {
return length * width * height;
}
}
}
```
在这个例子中,`Rectangle`类有`getArea()`方法用于计算长方形的面积,而`Cuboid`类则有`getVolume()`方法用于计算长方体的体积。当你需要使用这两个形状时,只需要创建相应的对象并调用相应的方法即可。
阅读全文