位置:首頁 > 高級語言 > Swift教學 > Swift if...else if...else語句

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

一個 if 語句可以跟著一個可選的 else if ... else 語句,單個 if...else if 語句用來測試各種條件是非常有用的。

當使用 if , else if , else 語句時有幾點要牢記。

  • 一個 if 可以有零或一個 else,它必須出現在 else if 之後。
  • 一個 if 可有0到多個 else if ,它們一定要在 else 之前。
  • 一旦有一個 else if 匹配成功,剩餘的 else if 是或 else 將不會再被測試。

語法

以下是 if...else if...else 語句的語法:

if boolean_expression_1 {
   /* Executes when the boolean expression 1 is true */
} else if boolean_expression_2 {
   /* Executes when the boolean expression 2 is true */
} else if boolean_expression_3 {
   /* Executes when the boolean expression 3 is true */
} else {
   /* Executes when the none of the above condition is true */
}

示例

import Cocoa

var varA:Int = 100;

/* Check the boolean condition using if statement */
if varA == 20 {
   /* If condition is true then print the following */
   println("varA is equal to than 20");
} else if varA == 50 {
   /* If condition is true then print the following */
   println("varA is equal to than 50");
} else {
   /* If condition is false then print the following */
   println("None of the values is matching");
}
println("Value of variable varA is \(varA)");

當上述代碼被編譯和執行時,它產生了以下結果:

None of the values is matching
Value of variable varA is 100