按如下要求编写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 11:55:46 浏览: 57
基本的Java程序
以下是Java程序的实现:
```java
// 定义接口A
interface A {
double PI = 3.14; // 常量PI
double area(); // 抽象方法area
}
// 定义接口B
interface B {
void setColor(String c); // 抽象方法setColor
}
// 定义接口C,继承接口A和B
interface C extends A, B {
void volume(); // 抽象方法volume
}
// 圆柱体类Cylinder实现接口C
class Cylinder implements C {
double radius; // 底圆半径
double height; // 圆柱体的高
String color; // 颜色
// 实现接口A中的抽象方法
public double area() {
return PI * radius * radius;
}
// 实现接口B中的抽象方法
public void setColor(String c) {
color = c;
}
// 实现接口C中的抽象方法
public void volume() {
double v = area() * height;
System.out.println("圆柱体的体积为:" + v);
}
}
// 创建主类来测试类Cylinder
public class Main {
public static void main(String[] args) {
Cylinder cylinder = new Cylinder();
cylinder.radius = 2;
cylinder.height = 5;
cylinder.setColor("红色");
cylinder.volume();
}
}
```
输出结果为:
```
圆柱体的体积为:62.800000000000004
```
阅读全文