public class IntegerStudy { public static void main(String[] arddddgs) { new Test(); } static class Test { int a = 1; static int b = 2; // // 제일 먼저 선언 할때 할당 하는것 {// 일반 초기 화 블록 System.out.println("일반 초기 화 11111111111"); System.out.println("초기화 블록에서 변경 전 a :" + a); a = 10; } // 초기화 블록이 두번쨰로 static { // 스테틱 초..