溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java循環結構介紹

發布時間:2020-05-26 15:53:22 來源:億速云 閱讀:205 作者:鴿子 欄目:編程語言

1.概述

順序結構的程序語句只能被執行一次。如果您想要同樣的操作執行多次,就需要使用循環結構。

Java中有三種主要的循環結構:

  • while 循環
  • do…while 循環
  • for 循環

在Java5中引入了一種主要用于數組的增強型for循環。

2.while循環

while 是最基本的循環,它的結構為:

while( 布爾表達式 ) {
  //循環內容
}

只要布爾表達式為 true,循環就會一直執行下去。

實例

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 : 10
value of x : 11
value of x : 12
value of x : 13
value of x : 14
value of x : 15
value of x : 16
value of x : 17
value of x : 18
value of x : 19

3.do…while循環

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

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

do {
   //代碼語句
}while(布爾表達式);

注意:布爾表達式在循環體的后面,所以語句塊在檢測布爾表達式之前已經執行了。 如果布爾表達式的值為 true,則語句塊一直執行,直到布爾表達式的值為 false

實例

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 : 10
value of x : 11
value of x : 12
value of x : 13
value of x : 14
value of x : 15
value of x : 16
value of x : 17
value of x : 18
value of x : 19

4.for循環

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

for 循環執行的次數是在執行前就確定的。語法格式如下:

for(初始化; 布爾表達式; 更新) {
    //代碼語句
}

關于 for 循環有以下幾點說明:

  • 最先執行初始化步驟??梢月暶饕环N類型,但可初始化一個或多個循環控制變量,也可以是空語句
  • 然后,檢測布爾表達式的值。如果為 true,循環體被執行。如果為 false,循環終止,開始執行循環體后面的語句
  • 執行一次循環后,更新循環控制變量
  • 再次檢測布爾表達式。循環執行上面的過程

實例

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 : 10
value of x : 11
value of x : 12
value of x : 13
value of x : 14
value of x : 15
value of x : 16
value of x : 17
value of x : 18
value of x : 19

5.增強for循環

Java5 引入了一種主要用于數組的增強型 for 循環。

Java 增強 for 循環語法格式如下:

for(聲明語句 : 表達式)
{
   //代碼句子
}

聲明語句:聲明新的局部變量,該變量的類型必須和數組元素的類型匹配。其作用域限定在循環語句塊,其值與此時數組元素的值相等。

表達式:表達式是要訪問的數組名,或者是返回值為數組的方法。

實例

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,

6.break關鍵字

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

break 跳出最里層的循環,并且繼續執行該循環下面的語句。

語法

break 的用法很簡單,就是循環結構中的一條語句:

break;

實例

public class Test {
   public static void main(String[] args) {
      int [] numbers = {10, 20, 30, 40, 50};

      for(int x : numbers ) {
         // x 等于 30 時跳出循環
         if( x == 30 ) {
            break;
         }
         System.out.print( x );
         System.out.print("\n");
      }
   }
}

以上實例編譯運行結果如下:

10
20

7.continue關鍵字

continue 適用于任何循環控制結構中。作用是讓程序立刻跳轉到下一次循環的迭代。

for 循環中,continue 語句使程序立即跳轉到更新語句。

while 或者 do…while 循環中,程序立即跳轉到布爾表達式的判斷語句。

語法

continue 就是循環體中一條簡單的語句:

continue;

實例

public class Test {
   public static void main(String[] args) {
      int [] numbers = {10, 20, 30, 40, 50};

      for(int x : numbers ) {
         if( x == 30 ) {
            continue;
         }
         System.out.print( x );
         System.out.print("\n");
      }
   }
}

以上實例編譯運行結果如下:

10
20
40
50



向AI問一下細節
推薦閱讀:
  1. 循環結構
  2. for循環結構

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

亚洲午夜精品一区二区_中文无码日韩欧免_久久香蕉精品视频_欧美主播一区二区三区美女