package hello; public class HelloWord{ static { System.out.println("Hello world"); System.exit(0); }} 如果没有System.exit(0);这句的话,就会抛出没有main方法异常。