关于this的问题~哪位高手告诉我下啊~!!!
public class Leaf{int i = 0;
//int increment() {
Leaf increment() {
i++;
//return i;
return this;
}
void print() {
System.out.println("i = " + i);
}
public static void main(String[] args){
Leaf x = new Leaf();
x.increment().increment().increment().print();
}
}
有哪位高手能帮忙告诉我下这段代码里面的this里的用处啊~
this我听说过,但是到底是怎么用的啊?
谢谢!!!