/
Dan7te
/
test
Обзор
Документация
Войти
/
Dan7te
/
test
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/Building.java
26 строк
645 B
Dan7Te
test
23 сен 2024, 14:16
23 сен 2024, 14:16
560f9b7
Код
Авторство
О чём код?
//TIP To <b>Run</b> code, press <shortcut actionId="Run"/> or // click the <icon src="AllIcons.Actions.Execute"/> icon in the gutter. //public class Main { // public static void main(String[] args) { // // } //} public class Building { private String type; // public Building(String type) { // this.type = type; // } public int initialize(String type){ this.type = type; return 0; } public static void main(String[] args) { //Building building = new Building("Ресторан"); Building building = new Building(); building.initialize("Барбершоп"); } }