Java 迴圈結構 - for, while 及 do...while__Java

來源:互聯網
上載者:User
順序結構的程式語句只能被執行一次。如果您想要同樣的操作執行多次,,就需要使用迴圈結構。

Java中有三種主要的迴圈結構: while 迴圈 do…while 迴圈 for 迴圈

在Java5中引入了一種主要用於數組的增強型for迴圈。 while 迴圈

while是最基本的迴圈,它的結構為:

while( 布林運算式 ) {  //迴圈內容}

只要布林運算式為 true,迴圈體會一直執行下去。 執行個體 Test.java 檔案代碼:

public class Test {   public static void main(String args[]) {      int x = 10;      while( x < 20 ) {         System.out.print("value of x : " + x );         x++;         System.out.print("\n");      }   }}

以上執行個體編譯運行結果如下:

value of x : 10value of x : 11value of x : 12value of x : 13value of x : 14value of x : 15value of x : 16value of x : 17value of x : 18value of x : 19
do…while 迴圈

對於 while 語句而言,如果不滿足條件,則不能進入迴圈。但有時候我們需要即使不滿足條件,也至少執行一次。

do…while 迴圈和 while 迴圈相似,不同的是,do…while 迴圈至少會執行一次。

 
do {       //代碼語句}while(布林運算式);

注意:布林運算式在迴圈體的後面,所以語句塊在檢測布林運算式之前已經執行了。 如果布林運算式的值為 true,則語句塊一直執行,直到布林運算式的值為 false。 執行個體 Test.java 檔案代碼:

public class Test {   public static void main(String args[]){      int x = 10;       do{         System.out.print("value of x : " + x );         x++;         System.out.print("\n");      }while( x < 20 );   }}

以上執行個體編譯運行結果如下:

value of x : 10value of x : 11value of x : 12value of x : 13value of x : 14value of x : 15value of x : 16value of x : 17value of x : 18value of x : 19
for迴圈

雖然所有迴圈結構都可以用 while 或者 do...while表示,但 Java 提供了另一種語句 —— for 迴圈,使一些迴圈結構變得更加簡單。

for迴圈執行的次數是在執行前就確定的。文法格式如下:

for(初始化; 布林運算式; 更新) {    //代碼語句}

關於 for 迴圈有以下幾點說明: 最先執行初始化步驟。可以聲明一種類型,但可初始化一個或多個迴圈控制變數,也可以是空語句。 然後,檢測布林運算式的值。如果為 true,迴圈體被執行。如果為false,迴圈終止,開始執行迴圈體後面的語句。 執行一次迴圈後,更新迴圈控制變數。 再次檢測布林運算式。迴圈執行上面的過程。 執行個體 Test.java 檔案代碼:

public class Test {   public static void main(String args[]) {       for(int x = 10; x < 20; x = x+1) {         System.out.print("value of x : " + x );         System.out.print("\n");      }   }}

以上執行個體編譯運行結果如下:

value of x : 10value of x : 11value of x : 12value of x : 13value of x : 14value of x : 15value of x : 16value of x : 17value of x : 18value of x : 19
Java 增強 for 迴圈

Java5 引入了一種主要用於數組的增強型 for 迴圈。

Java 增強 for 迴圈文法格式如下:

for(聲明語句 : 運算式){   //代碼句子}

聲明語句:聲明新的局部變數,該變數的類型必須和數組元素的類型匹配。其範圍限定在迴圈語句塊,其值與此時數組元素的值相等。

運算式:運算式是要訪問的數組名,或者是傳回值為數組的方法。 執行個體 Test.java 檔案代碼:

public class Test {   public static void main(String args[]){      int [] numbers = {10, 20, 30, 40, 50};       for(int x : numbers ){         System.out.print( x );         System.out.print(",");      }      System.out.print("\n");      String [] names ={"James", "Larry", "Tom", "Lacy"};      for( String name : names ) {         System.out.print( name );         System.out.print(",");      }   }}

以上執行個體編譯運行結果如下:

10,20,30,40,50,James,Larry,Tom,Lacy,
break 關鍵字

break 主要用在迴圈語句或者 switch 語句中,用來跳出整個語句塊。

break 跳出最裡層的迴圈,並且繼續執行該迴圈下面的語句。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.