public Emloyee(double s) { this("hello",1); } public Emloyee(String ss , int x) { //do somthing } 当调用new Employee(10000000)时,Emloyee(double s)构造器将调用Emloyee(String ss , int x)构造器,采用这种方式使用this关键字非常有用,这样对公共的构造器代码部分只编写一次即可。