Swift 条件语句
在 Swift 中,条件语句用于根据特定条件执行不同的代码块。Swift 提供了 if
、guard
、switch
等条件语句来实现不同的条件逻辑。以下是 Swift 中常用的条件语句:
一、if 语句
if
语句用于根据条件执行代码块。语法如下:
if condition {// 代码块
} else if anotherCondition {// 代码块
} else {// 代码块
}
例如:
let score = 85
if score >= 90 {print("优秀")
} else if score >= 60 {print("及格")
} else {print("不及格")
}
二、guard 语句
guard
语句用于在条件不满足时退出当前作用域。通常与 else
配合使用。语法如下:
guard condition else {// 条件不满足时执行的代码return
}
// 条件满足时执行的代码
例如:
func processInput(_ input: Int?) {guard let value = input else {print("输入为空")return}// 对 value 进行处理
}
三、switch 语句
switch
语句用于根据不同的情况执行对应的代码块。语法如下:
switch value {
case pattern1:// 代码块
case pattern2, pattern3:// 代码块
default:// 代码块
}
例如:
let day = "Monday"
switch day {
case "Monday", "Tuesday", "Wednesday", "Thursday", "Friday":print("工作日")
case "Saturday", "Sunday":print("周末")
default:print("无效的日期")
}
条件语句是编程中常用的控制流结构,可以根据不同的条件执行不同的代码逻辑,从而实现更加灵活和复杂的程序行为。Swift 中的条件语句提供了丰富的功能和灵活的语法,可以满足各种条件逻辑的需求。