class Person {private double base;// 普通方法(非构造器方法)里的this,就是new出来的那个对象public double getBase(){ return this.base;}public void setBase(double b){this.base = b }// 构造器中的this,是,当前正在new过程中的对象(其实也就是你正在new的这个对象)// 无参的构造器public Person(){}// 有参的构造器public Person(double b){ this() // 这个this(),作用是,调用无参的构造器this.base = b;}// 有参的构造器public Person(double b, double h){ this(b) // 这个this(b),作用是,调用上面那个只有一个形参的的构造器this.base = b;this.height = h;}
}
public class PersonTest(){public static void main(String[] args){// 使用无参的构造器Person p1 = new Person()p1.setBase(10)// 使用有参的构造器Person p2 = new Person(20, 30)sout('base=' + p2.getBase())}
}
有个规定:
在一个类中,声明了n个构造器
,则最多有n-1个构造器
,可以有“this(形参列表)”的结构,
this(形参列表),必须放在当前构造器的第一行