Swift - If 语句


if语句由一个布尔表达式后跟一个或多个语句组成。

句法

Swift 4 中if语句的语法如下 -

if boolean_expression {
   /* statement(s) will execute if the boolean expression is true */
}

如果布尔表达式的计算结果为true ,则if语句内的代码块将被执行。如果布尔表达式的计算结果为false,则将执行 if 语句结束后(右大括号之后)的第一组代码。

流程图

如果语句

例子

var varA:Int = 10;

/* Check the boolean condition using if statement */
if varA < 20 {
   /* If condition is true then print the following */
   print("varA is less than 20");
}

print("Value of variable varA is \(varA)");

当我们使用 Playground 运行上述程序时,我们得到以下结果。

varA is less than 20
Value of variable varA is 10
swift_decision_making.htm