OOP_IO-2x_2023-mirror/src/Lab6/Coupe.java

21 lines
786 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package Lab6;
public class Coupe extends Car {
private final String bodyType;
// Клас купе має додатковий тип який визначає тип кузова, або можна написати чи машина без криші чи з кришою
public Coupe(String make, String model, int year, int price, int speed, double fuelConsumption, String bodyType) {
super(make, model, year, price, speed, fuelConsumption);
this.bodyType = bodyType;
}
public String getBodyType() {
return bodyType;
}
@Override
public String toString() {
return super.toString()+ String.format("Type: %-10s |" , bodyType); // викликаємо супер-метод, додаємо тип кузова
}
}