封装一类接口ComputerWeight,该接口包含三个功能:double computerWeight,void printName,double printPrice;封装一类接口ComputerCompany,该接口包含2个功能:String computerName, void printFunction;封装一类对象FlashMemory实现上述两接口,并在main方法中测试。
时间: 2024-04-08 15:28:30 浏览: 126
各种接口封装
4星 · 用户满意度95%
以下是封装了接口`ComputerWeight`和`ComputerCompany`的类`FlashMemory`的实现,并在`main`方法中进行测试:
```java
// ComputerWeight接口
interface ComputerWeight {
double computeWeight();
void printName();
double printPrice();
}
// ComputerCompany接口
interface ComputerCompany {
String getComputerName();
void printFunction();
}
// FlashMemory类实现接口ComputerWeight和ComputerCompany
class FlashMemory implements ComputerWeight, ComputerCompany {
private String computerName;
private double weight;
private double price;
private String function;
public FlashMemory(String computerName, double weight, double price, String function) {
this.computerName = computerName;
this.weight = weight;
this.price = price;
this.function = function;
}
@Override
public double computeWeight() {
return weight;
}
@Override
public void printName() {
System.out.println("电脑名称:" + computerName);
}
@Override
public double printPrice() {
return price;
}
@Override
public String getComputerName() {
return computerName;
}
@Override
public void printFunction() {
System.out.println("功能:" + function);
}
}
// 测试类
class Main {
public static void main(String[] args) {
FlashMemory flashMemory = new FlashMemory("Lenovo Yoga", 0.5, 1000, "存储数据");
flashMemory.printName();
System.out.println("重量:" + flashMemory.computeWeight());
System.out.println("价格:" + flashMemory.printPrice());
flashMemory.printFunction();
}
}
```
在上面的代码中,我们定义了接口`ComputerWeight`和`ComputerCompany`,并在类`FlashMemory`中实现了这两个接口。`FlashMemory`类有一个构造方法用于初始化电脑名称、重量、价格和功能。然后,我们分别实现了接口中的方法,根据需要进行相应的操作。
在`Main`类的`main`方法中,我们创建了一个`FlashMemory`对象,并调用了对象的各个方法来打印电脑名称、重量、价格和功能。
输出结果如下:
```
电脑名称:Lenovo Yoga
重量:0.5
价格:1000.0
功能:存储数据
```
可以看到,成功封装了接口`ComputerWeight`和`ComputerCompany`的类`FlashMemory`,并且在`main`方法中正确地进行了测试。
阅读全文