class Car{
private String ID_num;
private String driver;
private String type;
private String car_num;
private String color;
public void setID_num(String ID_num) {
this.ID_num = ID_num;
System.out.println();
}
public String getID_num() {
return ID_num;
}
public void setDriver(String driver) {
this.driver = driver;
}
public String getDriver() {
return driver;
}
public void setType(String type) {
this.type = type;
}
public String getType() {
return type;
}
public void setCar_num(String car_num) {
this.car_num = car_num;
}
public String getCar_num() {
return car_num;
}
public void setColor(String color) {
this.color = color;
}
public String getColor() {
return color;
}
public void show(){
System.out.println("车主QQ号&