public class Test{
static{
System.out.println("hello world");
}
public static void main(String[]args){
}
}

  不管static的位置在哪,静态块的执行都是在main()方法之前。

05-02 10:51