Java 控制語句

靜默虛空發表於2019-03-12

:notebook: 本文已歸檔到:「blog

:keyboard: 本文中的示例程式碼已歸檔到:「javacore

Java 控制語句大致可分為三大類:

  • 選擇語句
    • if, else-if, else
    • switch
  • 迴圈語句
    • while
    • do...while
    • for
    • foreach
  • 終端語句
    • break
    • continue
    • return

選擇語句

if 語句

if 語句會判斷括號中的條件是否成立,如果成立則執行 if 語句中的程式碼塊,否則跳過程式碼塊繼續執行。

語法

if(布林表示式) {
   //如果布林表示式為true將執行的語句
}
複製程式碼

示例

public class IfDemo {
    public static void main(String args[]) {
        int x = 10;
        if (x < 20) {
            System.out.print("這是 if 語句");
        }
    }
}
// output:
// 這是 if 語句
複製程式碼

if...else 語句

if 語句後面可以跟 else 語句,當 if 語句的布林表示式值為 false 時,else 語句塊會被執行。

語法

if(布林表示式) {
   //如果布林表示式的值為true
} else {
   //如果布林表示式的值為false
}
複製程式碼

示例

public class IfElseDemo {
    public static void main(String args[]) {
        int x = 30;
        if (x < 20) {
            System.out.print("這是 if 語句");
        } else {
            System.out.print("這是 else 語句");
        }
    }
}
// output:
// 這是 else 語句
複製程式碼

if...else if...else 語句

  • if 語句至多有 1 個 else 語句,else 語句在所有的 else if 語句之後。
  • If 語句可以有若干個 else if 語句,它們必須在 else 語句之前。
  • 一旦其中一個 else if 語句檢測為 true,其他的 else if 以及 else 語句都將跳過執行。

語法

if (布林表示式 1) {
   //如果布林表示式 1的值為true執行程式碼
} else if (布林表示式 2) {
   //如果布林表示式 2的值為true執行程式碼
} else if (布林表示式 3) {
   //如果布林表示式 3的值為true執行程式碼
} else {
   //如果以上布林表示式都不為true執行程式碼
}
複製程式碼

示例

public class IfElseifElseDemo {
    public static void main(String args[]) {
        int x = 3;

        if (x == 1) {
            System.out.print("Value of X is 1");
        } else if (x == 2) {
            System.out.print("Value of X is 2");
        } else if (x == 3) {
            System.out.print("Value of X is 3");
        } else {
            System.out.print("This is else statement");
        }
    }
}
// output:
// Value of X is 3
複製程式碼

巢狀的 if…else 語句

使用巢狀的 if else 語句是合法的。也就是說你可以在另一個 if 或者 else if 語句中使用 if 或者 else if 語句。

語法

if (布林表示式 1) {
   ////如果布林表示式 1的值為true執行程式碼
   if (布林表示式 2) {
      ////如果布林表示式 2的值為true執行程式碼
   }
}
複製程式碼

示例

public class IfNestDemo {
    public static void main(String args[]) {
        int x = 30;
        int y = 10;

        if (x == 30) {
            if (y == 10) {
                System.out.print("X = 30 and Y = 10");
            }
        }
    }
}
// output:
// X = 30 and Y = 10
複製程式碼

switch 語句

switch 語句判斷一個變數與一系列值中某個值是否相等,每個值稱為一個分支。

switch 語句有如下規則:

  • switch 語句中的變數型別只能為 byteshortintchar 或者 String
  • switch 語句可以擁有多個 case 語句。每個 case 後面跟一個要比較的值和冒號。
  • case 語句中的值的資料型別必須與變數的資料型別相同,而且只能是常量或者字面常量。
  • 當變數的值與 case 語句的值相等時,那麼 case 語句之後的語句開始執行,直到 break 語句出現才會跳出 switch 語句。
  • 當遇到 break 語句時,switch 語句終止。程式跳轉到 switch 語句後面的語句執行。case 語句不必須要包含 break 語句。如果沒有 break 語句出現,程式會繼續執行下一條 case 語句,直到出現 break 語句。
  • switch 語句可以包含一個 default 分支,該分支必須是 switch 語句的最後一個分支。default 在沒有 case 語句的值和變數值相等的時候執行。default 分支不需要 break 語句。

語法

switch(expression){
    case value :
       //語句
       break; //可選
    case value :
       //語句
       break; //可選
    //你可以有任意數量的case語句
    default : //可選
       //語句
       break; //可選,但一般建議加上
}
複製程式碼

示例

public class SwitchDemo {
    public static void main(String args[]) {
        char grade = 'C';

        switch (grade) {
        case 'A':
            System.out.println("Excellent!");
            break;
        case 'B':
        case 'C':
            System.out.println("Well done");
            break;
        case 'D':
            System.out.println("You passed");
        case 'F':
            System.out.println("Better try again");
            break;
        default:
            System.out.println("Invalid grade");
            break;
        }
        System.out.println("Your grade is " + grade);
    }
}
// output:
// Well done
// Your grade is C
複製程式碼

迴圈語句

while 迴圈

只要布林表示式為 truewhile 迴圈體會一直執行下去。

語法

while( 布林表示式 ) {
    //迴圈內容
}
複製程式碼

示例

public class WhileDemo {
    public static void main(String args[]) {
        int x = 10;
        while (x < 20) {
            System.out.print("value of x : " + x);
            x++;
            System.out.print("\n");
        }
    }
}
// output:
// 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
複製程式碼

do while 迴圈

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

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

語法

do {
    //程式碼語句
} while (布林表示式);
複製程式碼

布林表示式在迴圈體的後面,所以語句塊在檢測布林表示式之前已經執行了。 如果布林表示式的值為 true,則語句塊一直執行,直到布林表示式的值為 false。

示例

public class DoWhileDemo {
    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);
    }
}
// output:
// 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
複製程式碼

for 迴圈

雖然所有迴圈結構都可以用 while 或者 do while 表示,但 Java 提供了另一種語句 —— for 迴圈,使一些迴圈結構變得更加簡單。 for 迴圈執行的次數是在執行前就確定的。

語法

for (初始化; 布林表示式; 更新) {
    //程式碼語句
}
複製程式碼
  • 最先執行初始化步驟。可以宣告一種型別,但可初始化一個或多個迴圈控制變數,也可以是空語句。
  • 然後,檢測布林表示式的值。如果為 true,迴圈體被執行。如果為 false,迴圈終止,開始執行迴圈體後面的語句。
  • 執行一次迴圈後,更新迴圈控制變數。
  • 再次檢測布林表示式。迴圈執行上面的過程。

示例

public class ForDemo {
    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");
        }
    }
}
// output:
// 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
複製程式碼

foreach 迴圈

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

語法

for (宣告語句 : 表示式) {
    //程式碼句子
}
複製程式碼

宣告語句:宣告新的區域性變數,該變數的型別必須和陣列元素的型別匹配。其作用域限定在迴圈語句塊,其值與此時陣列元素的值相等。

表示式:表示式是要訪問的陣列名,或者是返回值為陣列的方法。

示例

public class ForeachDemo {
    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(",");
        }
    }
}
// output:
// 10,20,30,40,50,
// James,Larry,Tom,Lacy,
複製程式碼

中斷語句

break 關鍵字

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

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

示例

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

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

        System.out.println("break 示例結束");
    }
}
// output:
// 10
// 20
// break 示例結束
複製程式碼

continue 關鍵字

continue 適用於任何迴圈控制結構中。作用是讓程式立刻跳轉到下一次迴圈的迭代。在 for 迴圈中,continue 語句使程式立即跳轉到更新語句。在 while 或者 do while 迴圈中,程式立即跳轉到布林表示式的判斷語句。

示例

public class ContinueDemo {
    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");
        }
    }
}
// output:
// 10
// 20
// 40
// 50
複製程式碼

return 關鍵字

跳出整個函式體,函式體後面的部分不再執行。

示例

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

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

        System.out.println("return 示例結束");
    }
}
// output:
// 10
// 20
複製程式碼

注意:請仔細體會一下 returnbreak 的區別。

最佳實踐

  • 選擇分支特別多的情況下,switch 語句優於 if...else if...else 語句。
  • switch 語句不要吝嗇使用 default
  • switch 語句中的 default 要放在最後。
  • foreach 迴圈優先於傳統的 for 迴圈
  • 不要迴圈遍歷容器元素,然後刪除特定元素。正確姿勢應該是遍歷容器的迭代器(Iterator),刪除元素。

小結


Java 控制語句

參考資料

相關文章