Java 中的 Continue 语句

Haider Ali 2022年1月14日
Java 中的 Continue 语句

本指南是关于在 Java 中使用 continue 语句的。它是什么?它是如何工作的?什么时候需要使用这个语句?所有这些都在这个简短的指南中进行了解释。让我们潜入。

Java 中的 continue 语句

你将主要在循环中使用 continue 语句。Java 中的这个语句有点像 break 语句。唯一的区别是它不会终止循环。相反,它使循环运行其下一次迭代,而无需运行 continue 语句下方的代码。看看我们在下面提供的代码片段。

public class Main {
    public static void main(String args[]) {
        for (int i=0; i<100; i++){
           if(i%2!=0)
           {
            continue;     //  SKip the Iteration If Number IS Odd;
           }
           System.out.print(i +", ");
        }
    }
}

代码的结果是什么?它会打印任何奇数吗?答案是不。因为在条件内部,有一个 continue 语句,它将循环跳转到下一次迭代,同时跳过下面的整个代码。

Author: Haider Ali
Haider Ali avatar Haider Ali avatar

Haider specializes in technical writing. He has a solid background in computer science that allows him to create engaging, original, and compelling technical tutorials. In his free time, he enjoys adding new skills to his repertoire and watching Netflix.

LinkedIn

相关文章 - Java Statement