OOP_IO-2x_2023-mirror/laba6/WashingMashines.java

18 lines
926 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.

public class WashingMashines extends ElectroAppliance {
// Поля похідного класу Washing Machines
private int waterConsumption;
private static int totalWaterConsumption = 0;
// Конструктор який задає поля і шукає загальне споживання води
public WashingMashines(int waterConsumption, int power, int electromagneticRadiation, String name) {
super(power, electromagneticRadiation, name);
this.waterConsumption = waterConsumption;
totalWaterConsumption = totalWaterConsumption + waterConsumption;
}
// Метод що повертає загальне споживання води
public static int getTotalWaterConsumption() {
return totalWaterConsumption;
}
/** Похідний класу електроприбору, який ще має поле споживання води */
}