首页 > 编程语言 > 详细

Java:this示例

时间:2015-04-19 01:08:03      阅读:292      评论:0      收藏:0      [点我收藏+]
 1 public class Leaf {
 2 
 3     int i = 0;
 4 
 5     Leaf inceament() {
 6         i++;
 7         return this;
 8     }
 9 
10     void print() {
11         System.out.println("i= " + i);
12     }
13 
14     
15     public static void main(String[] args) {
16         Leaf x = new Leaf();
17         x.inceament().inceament().inceament().print();
18     }
19 }

输出

i= 3

有几个inceament就输出几

 

Java:this示例

原文:http://www.cnblogs.com/taoxiuxia/p/4438478.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!