Java中的Continue语句属于分支语句的范畴。其他分支语句是break 和return 语句。 continue是java中51个关键字之一。 java 中的关键字也称为具有特定用途的保留字。这些关键字不应该用作变量名、方法名、类名。在 Java 代码中编写 continue 语句的目的是跳过循环的当前迭代,例如 for、while 和 do-while。控制主要处理到同一个循环(如果没有中断)或传递到代码的下一个语句(如果当前循环被中断)。
开始您的免费软件开发课程
网络开发、编程语言、软件测试及其他
对于其他编程语言(例如 C 和 C++), continue 语句具有相同的目的。它也是C和C++中的关键字。 continue 语句与break 语句正好相反;如果遇到break语句,它会自动中断循环。而return语句则完全退出程序。对于 C、C++ 和 Java,return 和 break 都是保留关键字。它们都不应该用于命名变量、方法或类。
语法:
for (i =0; i<max; i++) // for loop is a sample loop, max is the maximum count at which the loop breaks { <Statements> //code statements If (done with this iteration) // if this condition validates to true the continue statement is executed { Continue; // statement itself } <Statements> // code statements }
下面是java中语句的一些示例:
Continue 语句与 for 循环的使用。
代码:
public class DemoContinueUsingFor { public static void main(String[] args){ for(int p=0;p<6;p++){ if(p==3){ continue; } System.out.print(p+" "); } } }
输出:
说明:
输出:
在 while 循环中使用Continue 语句。
代码:
public class DemoContinueUsingWhile { public static void main(String[] args){ int max = 0; while(max <= 10){ if(max == 6){ max++; continue; } System.out.print(max+" "); max++; } } }
输出:
说明:
代码:
public class DemoContinueUsingWhile { public static void main(String[] args){ int max = 0; while(max <= 10){ if(max == 6){ continue; max++; // Here the max ++ is written after continue statement } System.out.println(max+" "); } } }
说明:
输出:
使用带有 do-while 循环的Continue 语句。
代码:
public class DemoContinueUsingDoWhile { public static void main(String[] args) { int k=10; do { if (k==6) { k--; continue; } System.out.print(k+ " "); k--; } while(k>0); } }
输出:
说明:
上面的文章解释了 continue 语句的用途;提供的三个示例清楚地描述了实时场景中的使用情况。 for、while 和 do-while 被认为是示例,并在此基础上解释 continue 语句的用法。和 continue 一样,还有 2 个语句,叫做break和return,它们在java企业应用程序中有自己的用途和应用。
以上是Java中的Continue语句的详细内容。更多信息请关注PHP中文网其他相关文章!