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

Posted allison-aichipingguo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2.7.3与程序转移有关的跳转语句相关的知识,希望对你有一定的参考价值。

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与程序转移有关的跳转语句的主要内容,如果未能解决你的问题,请参考以下文章

web中的跳转语句 java中的跳转语句

c#网页之间的跳转语句

非本地跳转之setjmp与longjmp

C语言关于SWITCH语句的跳转问题

网络状态码301与302

00016_跳转语句break