if-else
var temperatureInFahrenheit = 30
if temperatureInFahrenheit <= 32 {
print("It's very cold. Consider wearing a scarf.")
}
// prints "It's very cold. Consider wearing a scarf."
If 后面得条件可以省略小括号
条件后面得大括号不可以省略
If 后面得条件只能是Bool类型
image.png
While
image.png
for
image.png
for - 区间运算符用在数组上
image.png
区间类型
image.png
带间隔的区间值
image.png
Switch
image.png
fallthrough
image.png
860
Switch 注意点
image.png
复合条件
image.png
区间匹配、元组匹配
image.png
值绑定
image.png
Where
image.png
image.png
标签语句
image.png