位置:首页 > 高级语言 > 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