码迷,mamicode.com
首页 > 其他好文 > 详细

【Stackoverflow好问题】从一个多层嵌套循环中直接退出

时间:2015-11-02 11:34:35      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

可以用brea+label的语法,例子如下
  1. public class Test {  
  2.   public static void main(String[] args) {  
  3.     outerloop:  
  4.     for (int i=0; i < 5; i++) {  
  5.       for (int j=0; j < 5; j++) {  
  6.         if (i * j > 6) {  
  7.           System.out.println("Breaking");  
  8.           break outerloop;  
  9.         }  
  10.         System.out.println(i + " " + j);  
  11.       }  
  12.     }  
  13.     System.out.println("Done");  
  14.   }  
  15. }  
首先在for循环前加标签,如例子中的outerloop,然后在for循环内break label(如本例的outerloop),就会跳出该label指定的for循环。
 

【Stackoverflow好问题】从一个多层嵌套循环中直接退出

标签:

原文地址:http://www.cnblogs.com/earl-yongchang/p/4929411.html

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