/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/java/java-503-16-005/main.java
17 строк
399 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
class InitOrder { static { System.out.print("S1 "); } { System.out.print("I1 "); } static { System.out.print("S2 "); } { System.out.print("I2 "); } InitOrder() { System.out.print("C "); } static { System.out.print("S3 "); } { System.out.print("I3 "); } } // При первом обращении к классу: // S1 S2 S3 // При new InitOrder(): // I1 I2 I3 C