① 我们在类的构造器中,可以显式的使用”this(形参列表)”方式,调用本类中指定的其他构造器 ② 构造器中不能通过”this(形参列表)”方式调用自己 ③ 如果一个类中有n个构造器,则最多有 n - 1构造器中使用了”this(形参列表)” ④ 规定:”this(形参列表)”必须声明在当前构造器的首行 ⑤ 构造器内部,最多只能声明一个”this(形参列表)”,用来调用其他的构造器
publicclassPersonTest{ publicstaticvoidmain(String[] args){ Person p1 = new Person(); p1.setAge(1); System.out.println(p1.getAge()); p1.eat(); System.out.println(); Person p2 = new Person("Jerry",20); System.out.println(p2.getAge()); } }