/
Nicholas
/
java_basics
Обзор
Документация
Войти
/
Nicholas
/
java_basics
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ObjectsAndClasses_StaticFinal/Computer/src/MONITOR.java
19 строк
411 B
Nicholay Sokolovsky
Computer Class
06 авг 2023, 18:23
06 авг 2023, 18:23
7bcd8bb
Код
Авторство
О чём код?
public class MONITOR { public MONITOR(Type type, int size, double weight) { this.type = type; this.size = size; this.weight = weight; } private final Type type; private final int size; public final double weight; public enum Type { IPS, TN, VA } public String toString() { return "Monitor: " + size + " in. " + type.toString(); } }