this 指向对象自己 自身的一个引用
形参名字 可以跟成员变量同名
public class Leaf{
int i = 0;
Leaf(int i) {this.i = i;}
Leaf increament() {
i++:
return this;
void print() { system.out.println(" i = +" + i );}
public static void main(String args[]) {
Leaf leaf = new Leaf(100);
leaf.increament().increament().print();
}
}
return 在内存腾出一块空间 指向对象
注意内存操作!!!