Swift if-else语句

Swift if-else语句

Swift的if-else语句包含两个部分:if语句和else语句。

如果测试评估为true,则执行if语句,如果测试评估为false,则执行else语句。

语法

if expression {
    // statements
} else {
    // statements
}

示例

let number = 5
if number > 0 {
    print("This is a positive number.")
} else {
    print("This is not a positive number.")
}
print("This will be executed anyways.")

输出:

This is a positive number.
This will be executed anyways.

在上述程序中,常数的值是正数(5),因此,测试用例的评估结果为真,并且if代码块内的语句被执行。

让我们将常数的值改为负数(-5),测试条件保持不变。

let number = -5
if number > 0 {
    print("This is a positive number.")
} else {
    print("This is not a positive number.")
}
print("This will be executed anyways.")

输出:

This is not a positive number.
This will be executed anyways.

您可以看到它执行了else代码块中的语句。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程