使用場景
switch
語句使用where
配合if let
限定某些條件。
let names = ["張三", "李四", "吳奇隆", "週六", "趙七", "吳青峰", "吳鎮宇"]
names.forEach {
switch $0 {
case let name where name.hasPrefix("吳"):
print("\(name)是吳家大院的人")
default:
print("hello,\($0)")
}
}
複製程式碼
- 配合
for
迴圈來新增限定條件使程式碼更加易讀。
let names = ["張三", "李四", "吳奇隆", "週六", "趙七", "吳青峰", "吳鎮宇"]
for name in names where name == "吳奇隆" {
print("\(name)大哥")
}
複製程式碼
- 介面擴充套件使用
where
進行限定(如果希望介面擴充套件的預設實現只在某些限定的條件下才適用)。例如這些系統的介面擴充套件:
extension ContiguousArray where Element : BidirectionalCollection {
public func joined() -> FlattenBidirectionalCollection<ContiguousArray<Element>>
}
extension ContiguousArray where Element : Sequence {
public func joined<Separator>(separator: Separator) -> JoinedSequence<ContiguousArray<Element>> where Separator : Sequence, Separator.Element == Element.Element
}
複製程式碼
這樣如果一個 Array
中的元素是不可比較的那麼 sort
方法也就不適用了。
var sortArr: [Int] = [99, 77, 12, 4, 23, 59, 8]
var unsortArr: [Any] = ["hello", 5, ["name":"Jack"]]
sortArr = sortArr.sorted()
unsortArr = unsortArr.sorted() //會提示報錯
複製程式碼