Java do-while循環

Java do-while循環用於多次迭代程序的一部分或重複多次執行一個代碼塊。 如果迭代次數不固定,必須至少執行一次循環,建議使用do-while循環。

Java do-while循環至少執行一次,因爲它是在循環體之後檢查條件。

語法:

do{  
    //code to be executed  
}while(condition); // 後置條件檢查

Java do-while循環執行流程圖如下所示 -
Java

示例:

public class DoWhileExample {
    public static void main(String[] args) {
        int i = 1;
        do {
            System.out.println(i);
            i++;
        } while (i <= 10);
    }
}

執行結果如下 -

1
2
3
4
5
6
7
8
9
10

Java無限do-while循環

如果在do-while循環中傳遞參數值爲:true,它將是一個無限do-while循環。

語法:

do{  
    //code to be executed  
}while(true);

示例:

public class DoWhileExample2 {
    public static void main(String[] args) {
        do {
            System.out.println("infinitive do while loop");
        } while (true);
    }
}

執行結果如下 -

infinitive do while loop
infinitive do while loop
infinitive do while loop
ctrl+c

上面的需要按ctrl + c退出程序。