What does this
refer to in the constructor of the Car
class?
public class Car {
private String model;
private String color;
public Car(String model, String color) {
this.model = model;
this.color = color;
}
public String getInfo() {
return model + " - " + color;
}
// ...
}