1 class Methods { 2 static native void nativeMethod(); 3 static { 4 System.out.println(100); 5 } 6 Methods() { 7 System.out.println(200); 8 } 9 final synchronized public void method(int i) throws Error, Exception { 10 System.out.println(i); 11 } 12 }