有个疑问如下:
return this.成员变量
返回成员变量
return this;
这里的this 是什么?
this可以被用来调用所在类的成员,比如“return this.成员变量”;也可以被用来代表所在类的对象,比如“return this;”。
David 发表于2017-06-19 16:29
就是说 return this;
这里的this 返回的就是一个本类的Object对象了。
是的。