Swift if語句
if 語句包含一個布爾表達式,後跟一個或多個語句。
語法
if 語句在 Swift 的語法如下:
if boolean_expression { /* statement(s) will execute if the boolean expression is true */ }
如果布爾表達式的計算結果為 true,則 if 語句中代碼塊將被執行。如果布爾表達式的值為 false,那麼 if 語句到(右大括號後)結束的第一組碼,將被執行。
流程圖
示例
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