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