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

JAVA标签的使用跳出循环

时间:2015-03-07 18:28:16      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

public static void main(String args[]) {
        int i=10,j=10;
        outer: while (i > 0) 
        {
            inner: while (j > 0)
            {
                if (j == 8)
                    break outer;
                System.out.println("内层循环");
                j--;
            }
            System.out.println("外层循环");
        }
        System.out.println("已跳出循环");
      }

 

JAVA标签的使用跳出循环

标签:

原文地址:http://www.cnblogs.com/liun1994/p/4320628.html

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