/
GermanezZ
/
JavaExercises
Обзор
Документация
Войти
/
GermanezZ
/
JavaExercises
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Clases/ObjectsAsParameters.java
19 строк
345 B
germa
Наследлование самое простое
18 янв 2025, 21:52
18 янв 2025, 21:52
43b5595
Код
Авторство
О чём код?
package Clases; public class ObjectsAsParameters extends Box { public static void main(String[] args) { Box box1 = new Box(10,20,5); Box box2 = new Box(); Box box3 = new Box(7); Box box4 = new Box(box1); box1.volume(); box2.volume(); box3.volume(); box4.volume(); } }