总体来说this有两种情况下用的到
第一种是调用某一对象是需要返回该对象的引用时 需要用到this
某一Leaf类中increment方法的返回是Leaf该对象 那么就可以这样写
Leaf increment(){
return this;
}
另一种个用处的话就是对于类对构造器的调用
class Flower{
Flower(int a){syso"a"}
Flower(){this(a)}
}
这样就实现类Flower()构造器对于Flower(int a)的调用 this指代的是Flower类的引用