定义手机类(Phone).属性:品牌(brand)、型号(type)、操作系统(os) 和内存(memory)、颜色(color)、价格(price). 2.show方法
时间: 2024-09-30 11:02:21 浏览: 56
Vue.js获取手机系统型号、版本、浏览器类型的示例代码
好的,这是一个简单的例子,我们将创建一个名为`Phone`的类来表示手机,它包含一些基本属性:
```java
public class Phone {
// 属性
private String brand; // 手机品牌
private String type; // 手机型号
private String os; // 操作系统
private int memory; // 内存容量 (通常以GB为单位)
private String color; // 手机颜色
private double price; // 价格
// 构造函数
public Phone(String brand, String type, String os, int memory, String color, double price) {
this.brand = brand;
this.type = type;
this.os = os;
this.memory = memory;
this.color = color;
this.price = price;
}
// show方法,用于展示手机信息
public void show() {
System.out.println("手机信息:");
System.out.println("品牌: " + brand);
System.out.println("型号: " + type);
System.out.println("操作系统: " + os);
System.out.println("内存: " + memory + " GB");
System.out.println("颜色: " + color);
System.out.println("价格: $" + price);
}
}
```
在这个类中,`show()`方法是一个实例方法,当你创建`Phone`的对象并调用这个方法时,会打印出手机的所有详细信息。
阅读全文