APL/APL2.1/TP08/Véhicules/Vehicule.java

12 lines
210 B
Java
Raw Normal View History

2022-03-14 17:26:22 +01:00
public abstract class Vehicule {
protected int wheels;
protected String type;
public int nbRoues() {
return this.wheels;
}
public String sorte() {
return this.type;
}
}