Constructor this()
class Car {
String color;
String gearType;
int door;
Car() {//default constructor
color = "white";
gearType = "auto";
door = 4;
}
Car(String c, String g, int d) {
color = c;
gearType = g;
door = d;
}
}Last updated