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

2.7.3与程序转移有关的跳转语句

时间:2019-03-09 21:50:23      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:src   string   splay   show   public   gif   col   static   spl   

break 和 continue

技术图片
 1 public class BreakAndContinue
 2 {
 3     public static void main(String[] args)
 4     {
 5         int i = 0;
 6         outer:
 7         while(true)
 8         {
 9             System.out.println ("Outer while loop");
10             while (true)
11             {
12                 i++;
13                 System.out.println ("i = "+ i);
14                 if (i == 1)
15                 {
16                     System.out.println("continue");
17                     continue;
18                 }
19                 if (i == 3)
20                 {
21                     System.out.println("continue outer");
22                     continue outer;
23                 }
24                 if (i == 5)
25                 {
26                     System.out.println("break");
27                     break;
28                 }
29                 if (i == 7)
30                 {
31                     System.out.println("break outer");
32                     break outer;
33                 }
34             }
35         }
36     }
37 }
38 
39     
View Code

 

2.7.3与程序转移有关的跳转语句

标签:src   string   splay   show   public   gif   col   static   spl   

原文地址:https://www.cnblogs.com/allison-aichipingguo/p/10503126.html

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