一般你在构造函数时会用
比如
Person (String name//我是上面那个name){
this.name=name//这个name指的是上面那个name;
//this.name指的是哪个对象调用这个构造函数,这个this就代表那个对象,也就是this.name这里面这个name
//就是这个对面里面他的属性name,把传进来的参数name的值传到那个对象的name的值。
//当然如果你不想用this 你这个构造函数的参数你别写name ,你写成String n;那下面那句就可以这样写
//name = n; 用这个this 是因为重名了,所以要用this来确定 我这个this代表的是对象的调用,不是你传的参数
}
|