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