/*
this:看上去,是用于区分局部变量和成员变量同名情况
this为什么可以解决这个问题?
this到底代表什么呢?
this:就代表本类对象,到底代表哪一个呢
代表所在函数所属对象的引用
简单说:哪个对象在调用this所在的函数,this就代表哪个对象
this的应用:当定义类中功能时,该函数内部要用到调用该函数的对象时,这时用this来表示这个对象
*/
/*
this 语句:用于构造函数间进行互相调用
this语句只能定义在构造函数的第一行,因为初始化要先执行。
*/
class Person
{
private String name;
private int age;
Person()
{
}
Person(String name)
{
this();//Person()
this.name=name;
}
Person(String name, int age)
{
this(name);//Person(String name)
this.age=age;
}
} |
|