补全类显示手机信息 【问题描述】请根据已知的程序代码,补全类Test和类MobilePhone,显示手机信息。 【输入形式】无 【输出形式】 Brand=Apple Code=13800000000
时间: 2024-10-14 22:10:43 浏览: 53
首先,我们需要创建一个`Brand`枚举来表示手机的品牌,然后定义一个`MobilePhone`类,包含品牌和电话号码属性。这里是一个简单的实现:
```java
// 定义品牌枚举
public enum Brand {
Apple, Samsung, Huawei
}
// 定义MobilePhone类
public class MobilePhone {
private Brand brand;
private String code;
// 构造函数
public MobilePhone(Brand brand, String code) {
this.brand = brand;
this.code = code;
}
// 获取手机品牌的方法
public String getBrand() {
return brand.toString();
}
// 获取电话号码的方法
public String getCode() {
return code;
}
@Override
public String toString() {
return "Brand=" + brand + ", Code=" + code;
}
}
// Test类用于测试
public class Test {
public static void main(String[] args) {
MobilePhone applePhone = new MobilePhone(Brand.Apple, "13800000000");
System.out.println(applePhone);
}
}
```
当你运行`Test`类的`main`方法时,会输出:
```
Brand=Apple, Code=13800000000
```
阅读全文