static
public class Person {
//2
{
//代码块(匿名代码块)
System.out.println("匿名代码块");
}
//1 :只执行一次
static {
//静态代码块
System.out.println("静态代码块");
}
//3
public Person(){
System.out.println("构造方法");
}
public static void main(String[] args) {
Person person1 = new Person();
Person person2 = new Person();
}
}
//运行结果
静态代码块
匿名代码块
构造方法

浙公网安备 33010602011771号