位置:首页 > 高级语言 > Swift在线教程 > Swift if语句

Swift if语句

if 语句包含一个布尔表达式,后跟一个或多个语句。

语法

if 语句在 Swift 的语法如下:

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

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

流程图

If Statement

示例

import Cocoa

var varA:Int = 11;

/* Check the boolean condition using if statement */
if varA < 12 {
   /* If condition is true then print the following */
   println("varA is less than 12");
}
println("Value of variable varA is \(varA)");

当我们将上面的程序在 playground 中运行,我们得到以下结果。

varA is less than 12
Value of variable varA is 11