按如下要求编写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 20:55:31 浏览: 26
Java实验题目设计代码
5星 · 资源好评率100%
以下是Java程序的实现:
```java
interface A {
double PI = 3.14;
double area();
}
interface B {
void setColor(String c);
}
interface C extends A, B {
void volume();
}
class Cylinder implements C {
private double radius;
private double height;
private String color;
public Cylinder(double r, double h, String c) {
this.radius = r;
this.height = h;
this.color = c;
}
public double area() {
return 2 * A.PI * radius * radius + 2 * A.PI * radius * height;
}
public void setColor(String c) {
this.color = c;
}
public void volume() {
System.out.println("Volume: " + A.PI * radius * radius * height);
}
}
public class Main {
public static void main(String[] args) {
Cylinder cylinder = new Cylinder(2.5, 5.0, "red");
System.out.println("Area: " + cylinder.area());
cylinder.setColor("blue");
cylinder.volume();
}
}
```
这个程序定义了三个接口 A、B、C,以及一个圆柱体类 Cylinder 实现了接口 C。在主类中创建了一个 Cylinder 对象,并测试了其功能。
阅读全文