1 package test1; 2 3 public class Clinit { 4 public int i = 123; 5 public static int j = 456; 6 run()7 public int run() { return j; } 8 } 9