package car;
public class Car {
private String color; // 颜色
private String brand; // 品牌
private boolean isElectric; // 是否电车
// 构造方法
public Car(String color, String brand, boolean isElectric) {
this.color = color;
this.brand = brand;
this.isElectric = isElectric;
}
// 启动方法
public void start() {
System.out.println("start");
}
// 判断是否电车方法
public void checkElectric() {
if (isElectric) {
System.out.println("这辆车是电车");
} else {
System.out.println("这辆车不是电车");
}
}
// 获取颜色
public String getColor() {
return color;
}
// 获取品牌
public String getBrand() {
return brand;
}
// 获取是否电车属性
public boolean isElectric() {
return isElectric;
}
}