码迷,mamicode.com
首页 > 编程语言 > 详细

java : 的使用

时间:2016-08-10 21:05:36      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

最近在看JDK源码时总是看到 : 这个标示符:

public static void testImportantKey() {
first: //first是自己定义的变量
while (true) {
for (int i = 0; i < 10; i++) {
System.out.println("1111111");
if (i == 2) {
break first;
}
System.out.println("2222222222");
}
}


}

输出结果:  

1111111
2222222222
1111111
2222222222
1111111

public static void testImportantKey() {

        while (true) {
            first:
            for (int i = 0; i < 10; i++) {
                System.out.println("1111111");
                if (i == 2) {
                    break first;
                }
                System.out.println("2222222222");
            }
        }


    }

输出结果:

1111111
2222222222
1111111
2222222222
1111111
1111111
2222222222
1111111
2222222222
1111111
1111111
2222222222
1111111
2222222222
1111111

.................

一直循环

 

 

这么一看 : 类似于goto。由于java没有goto所以有了 : 

java : 的使用

标签:

原文地址:http://www.cnblogs.com/Roysatm/p/5758097.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!