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

17 lines
883 B
Java
Raw Permalink 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 HeatingDevices extends ElectroAppliance {
// Поля похідного класу Heating Devices
private int heatTransfer;
private static int totalHeatTransfer = 0;
// Конструктор який задає поля і шукає загальне випромінення тепла
public HeatingDevices(int heatTransfer, int power, int electromagneticRadiation, String name) {
super(power, electromagneticRadiation, name);
this.heatTransfer = heatTransfer;
totalHeatTransfer = totalHeatTransfer + heatTransfer;
}
// Повертає загальне випромінення тепла
public static int getTotalHeatTransfer() {
return totalHeatTransfer;
}
/** Похідний класу електроприбору, який ще має поле випромінення тепла*/
}