4.this关键字(this key word)
继上一小节,(3.一个对象可能有多个参考)this是当中的一个参考!指向他自己。
class MyTestDate {
int year;
int month;
MyTestDate(int year, int month, int day) {
/*为了学习this的用法,本例中,我们故意用了两个相同的year,一个是全类作用范围的(整个类中都有效马克-to-win):int
year; 另外一个是,只有本块儿才起作用的块作用范围的MyTestDate(int year,
这两个year不是一个year,如果把this.year = year; 变成 year =
year,这两个year都成了块作用范围的那个year, 这样全类作用范围的那个year等于没赋值,还是0,输出结果就会变成0/0/0, if
here you use year = year;month = month; result is 0/0/0, because
this.year still is 0.local variable 's scope is less than the "this"
variable's scope.
*/
this.year = year;//this.year指前面类范围的变量 int year。
this.month = month;
}
void setYear(int year) {
this.year = year;
}
void setMonth(int month) {
this.month = month;
}
/*系统见到System.out.println,会自动调用toString,初学者没必要深究*/
public String toString() {
return "" + year + "/" + month ;
}
}
public class Test {
public static void main(String[] args) {
MyTestDate date = new MyTestDate(2009, 7, 18);
System.out.println(date);
date.setYear(2009);
date.setMonth(5);
System.out.println(date);
MyTestDate date1 = new MyTestDate(2009, 1, 1);
System.out.println(date1);
date1.setYear(2006);
date1.setMonth(6);
System.out.println(date1);
}
}
result is:
2009/7
2009/5
2009/1
2006/6
【新手可忽略不影响继续学习】
class MyTestDate {
int year;
int month;
MyTestDate(int year, int month, int day) {
this.year = year;
this.month = month;
}
MyTestDate setYear(int year) {
this.year = year;
return this;
}
public MyTestDate setMonth(int month) {
this.month = month;
return this;
}
public String toString() {
return "" + year + "/" + month ;
}
}
public class Test {
public static void main(String[] args) {
MyTestDate date = new MyTestDate(2009, 7, 18);
System.out.println(date);
date.setYear(2009).setMonth(8);
System.out.println(date);
MyTestDate date1 = new MyTestDate(2009, 1, 1);
。。。。。。。。。。。。。。。
内容来源于网络如有侵权请私信删除