2、/**按如下要求编写Java程序: (1)定义接口A,里面包含值为3.14的常量PI和抽象方法double area()。 (2)定义接口B,里面包含抽象方法void setColor(String c)。 (3)定义接口C,该接口继承了接口A和B,里面包含抽象方法void volume()。 (4)定义圆柱体类Cylinder实现接口C,该类中包含三个成员变量:底圆半径radius、 圆柱体的高height、颜色color。 (5)创建主类来测试类Cylinder。 */
时间: 2024-02-28 16:56:27 浏览: 85
以下是符合要求的Java程序:
```java
// 定义接口A
interface A {
double PI = 3.14;
double area();
}
// 定义接口B
interface B {
void setColor(String c);
}
// 定义接口C,继承A和B
interface C extends A, B {
void volume();
}
// 定义圆柱体类Cylinder,实现接口C
class Cylinder implements C {
private double radius;
private double height;
private String color;
public Cylinder(double radius, double height, String color) {
this.radius = radius;
this.height = height;
this.color = color;
}
// 实现接口A中的抽象方法
public double area() {
return 2 * PI * radius * radius + 2 * PI * radius * height;
}
// 实现接口B中的抽象方法
public void setColor(String c) {
this.color = c;
}
// 实现接口C中的抽象方法
public void volume() {
double v = PI * radius * radius * height;
System.out.println("圆柱体的体积是:" + v);
}
}
// 创建主类来测试类Cylinder
public class Main {
public static void main(String[] args) {
Cylinder cylinder = new Cylinder(2, 5, "红色");
System.out.println("圆柱体的表面积是:" + cylinder.area());
cylinder.volume();
cylinder.setColor("蓝色");
System.out.println("圆柱体的颜色是:" + cylinder.color);
}
}
```
程序的运行结果为:
```
圆柱体的表面积是:62.800000000000004
圆柱体的体积是:62.800000000000004
圆柱体的颜色是:蓝色
```
阅读全文