APL/APL2.1/TP08/Véhicules/Vehicule.java
2022-03-14 17:26:22 +01:00

12 lines
210 B
Java

public abstract class Vehicule {
protected int wheels;
protected String type;
public int nbRoues() {
return this.wheels;
}
public String sorte() {
return this.type;
}
}