this指示隐式函数,也就是被构造的对象。例如:
class Person{
String name;
public Person(String name){
this.name = name;
}
public Person(){}
}
class Student{
public Student(){
super();
}
public Student(String name){
this();
}
}
转载请注明原文地址: https://www.6miu.com/read-57523.html