有時我們需要給特定的集合類型增加一個擴(kuò)展方法沽翔,例如給 Array<String> 增加一個 isStringElement 屬性鄙煤,或者增加一個 random 方法來實現(xiàn) String 的隨機(jī)亂序舌剂,這時可以使用 where 子句, 限制 Element 為 String匣吊,例如:
extension Array where Element == String {
var isStringArray:Bool {
return true
}
func random() -> Array<String> {
var result = self
for index in 0..<result.count {
let newIndex = Int(arc4random_uniform(UInt32(result.count-index))) + index
if index != newIndex {
result.swapAt(index, newIndex)
}
}
return result
}
}
let isString = ["he", "she", "it"].isStringArray // true
let randomArray = ["he", "she", "it"].random() // 隨機(jī)出現(xiàn)["he", "it", "she"]
That's all ~