控制流
while顽决、if兆览、guard吃嘿、switch
For-in循環(huán)
While循環(huán)
- while
- repeat-while
While
while condition {
...
}
Repeat-While
repeat {
statements
} while condition
條件語句
If
Switch
這里與C系其他語言不同,兩個case之間不需要加break來退出宝恶;如果兩個case要執(zhí)行相同的代碼乘综,可以將其寫在一個case中憎账,用逗號分隔套硼;可以匹配區(qū)間卡辰;
元組
可以使用元組在一個switch中測試多個值,使用_
來匹配所有可能的值
值綁定
可以將匹配到的值臨時綁定為一個常量或者變量
所謂的值綁定,因為值是在case的函數體力綁定到臨時的常量或者變量的
let anotherPoint = (2, 0)
switch anotherPoint {
case (let x, 0):
print("on the x-axis with an x value of \(x)")
case (0, let y):
print("on the y-axis with a y value of \(y)")
case let (x, y):
print("somewhere else at (\(x), \(y))")
}
如果你的case包含了所有的情況九妈,那么就不需要寫default了
Where
switch可以使用where
來檢查額外的情況
let yetAnotherPoint = (1, -1)
switch yetAnotherPoint {
case let (x, y) where x == y:
print("(\(x), \(y)) is on the line x == y")
case let (x, y) where x == -y:
print("(\(x), \(y)) is on the line x == -y")
case let (x, y):
print("(\(x), \(y)) is just some arbitrary point")
}
復合情況
多個switch共享一個case的情況可以在case后都寫上
控制語句轉移
- continue
- break
- fallthrough
- return
- throw
Continue
可以用在for循環(huán)里的switch分句case里面反砌,相當于C系語言的break
Break
也可以用在switch中,由于case中不允許為空萌朱,所以可以在default語句中直接break
Fallthrough
由于switch中的case執(zhí)行完之后直接跳出宴树,所以遇到那種執(zhí)行完上一個case繼續(xù)執(zhí)行下一個case的時候,使用fallthrough
給語句打標簽
給語句打標簽晶疼,可以讓break酒贬、continue指定跳轉到這個標簽里
提前退出
guard,類似于if翠霍,基于布爾值表達式來執(zhí)行語句锭吨。使用guard語句來要求條件必須為真才能執(zhí)行guard之后的語句。與if不同寒匙,guard語句總有一個else分句——else分句里面的代碼會在條件不為真的時候執(zhí)行
func greet(person: [String: String]) {
guard let name = person["name"] else {
return
}
print("Hello \(name)!")
guard let location = person["location"] else {
print("I hope the weather is nice near you.")
return
}
print("I hope the weather is nice in (location).")
}
檢查API的可用性
if #available(iOS 9, OSX 10.10, *) {
// Use iOS 9 APIs on iOS, and use OS X v10.10 APIs on OS X
} else {
// Fall back to earlier iOS and OS X APIs
}