class Person {
public Person(){
System.out.println("[构造方法]Person 类构造方法执行");
}
{// 构造块会先于构造方法执行;并且每次实例化新对象的时候,都会调用构造块中的代码;
System.out.println("[构造块] Person 构造块执行!");
}
}
public class HelloWorld {
public static void main(String[] args) {
new Person();
new Person();
new Person();
}
}
标签:构造方法,代码,System,构造,Person,5.17,new,public
From: https://www.cnblogs.com/pansidong/p/17452341.html