先调用父类构造函数,再调用自己的,默认调用父类的默认构造函数,
class Employee extends Person{
public Employee(){
this("(2)This is Emloyee");
//System.out.println("(3)");
}
public Employee(String s){
System.out.println(s + "(5)");
}
}
输出结果(2)This is Emloyee(5);思考!!!!!!!!!!