Swift - If 语句

  • 简述

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

    if Swift 4 中的语法如下 -
    
    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