Posted on 2006-02-27 16:55
D调 阅读(437)
评论(0) 编辑 收藏 所属分类:
JAVA
看下面thinking in java 里面中的经典例子吧,不懂
再看十遍
看到懂为止:
public class Leaf{
private int i=0;
Leaf increment(){
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();
}
}