在 Java 中跳出 for 迴圈

Haider Ali 2022年1月14日
在 Java 中跳出 for 迴圈

本指南將教我們如何跳出 Java 中的 for 迴圈。在程式設計中,某些條件需要中斷 for 迴圈或任何其他與此相關的迴圈。讓我們來看看。

在 Java 中跳出 for 迴圈

打破迴圈當前迭代的方法再簡單不過了。你只需要使用 break,程式就會跳出那個迴圈。下面的程式碼示例是不言自明的。

public class Main 
{

  public static void main(String[] args) 
  {
    //break statement is use to break loop at any point of iteration.
    for (int i = 0; i < 10; i++) 
    {
      if (i == 5) 
      {
        break; //breaking 5th iteration
      }
      System.out.println(i);
    }
  }
}

輸出:

0
1
2
3
4

如你所見,通過簡單地編寫命令 break;,我們就停止了迭代並跳出迴圈。

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 Loop