public class StaticTest { static int j=2; static{ j=3; System.out.println(j); } public StaticTest() { // TODO Auto-generated constructor stub j=9; System.out.println(j); } public static void main(String[] args) { System.out.println("hello"); new StaticTest(); } }
3
hello
9