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