泛型函数
func swapTwoValues<T>(inout a: T,inout b: T) { let temporaryA = a a = b b = temporaryA } var someInt = 3 var anotherInt = 107 swapTwoValues(&someInt,b: &anotherInt) print(someInt) print(anotherInt) // someInt is now 107,and anotherInt is now 3 var someString = "hello" var anotherString = "world" swapTwoValues(&someString,b: &anotherString) print(someString) print(anotherString) // someString is now "world",and anotherString is now "hello"
泛型类型
struct Stack<T> { var items = [T]() mutating func push(item: T) { items.append(item) } mutating func pop() -> T { return items.removeLast() } } var stackOfStrings = Stack<String>() stackOfStrings.push("uno") stackOfStrings.push("dos") stackOfStrings.push("tres") stackOfStrings.push("cuatro") // 现在栈已经有4个string了
参数类型约束
func someFunction<T: SomeClass,U: SomeProtocol>(someT: T,someU: U) { // function body goes here }
上面这个假定函数有两个类型参数。第一个类型参数T,有一个需要T必须是SomeClass子类的类型约束。
第二个类型参数U,有一个需要U必须遵循SomeProtocol协议的类型约束。
func findIndex<T: Equatable>(array: [T],_ valueToFind: T) -> Int? { for (index,value) in array.enumerate() { if value == valueToFind { return index } } return nil } let doubleIndex = findIndex([3.14159,0.1,0.25],9.3) // doubleIndex is an optional Int with no value,because 9.3 is not in the array let stringIndex = findIndex(["Mike","Malcolm","Andrea"],"Andrea") // stringIndex is an optional Int containing a value of 2
关联类型
当定义一个协议时,有的时候声明一个或多个关联类型作为协议定义的一部分是非常有用的。
一个关联类型作为协议的一部分,给定了类型的一个占位名(或别名)。作用于关联类型上实际类型在协议被实现前是不需要指定的。
关联类型被指定为typealias关键字。
protocol Container { typealias ItemType mutating func append(item: ItemType) var count: Int { get } subscript(i: Int) -> ItemType { get } } struct Stack<T>: Container { // original Stack<T> implementation var items = [T]() mutating func push(item: T) { items.append(item) } mutating func pop() -> T { return items.removeLast() } // conformance to the Container protocol mutating func append(item: T) { self.push(item) } var count: Int { return items.count } subscript(i: Int) -> T { return items[i] } }
where语句
protocol Container { typealias ItemType mutating func append(item: ItemType) var count: Int { get } subscript(i: Int) -> ItemType { get } } struct Stack<T>: Container { // original Stack<T> implementation var items = [T]() mutating func push(item: T) { items.append(item) } mutating func pop() -> T { return items.removeLast() } // conformance to the Container protocol mutating func append(item: T) { self.push(item) } var count: Int { return items.count } subscript(i: Int) -> T { return items[i] } } func allItemsMatch< C1: Container,C2: Container where C1.ItemType == C2.ItemType,C1.ItemType: Equatable> (someContainer: C1,_ anotherContainer: C2) -> Bool { // 检查两个Container的元素个数是否相同 if someContainer.count != anotherContainer.count { return false } // 检查两个Container相应位置的元素彼此是否相等 for i in 0..<someContainer.count { if someContainer[i] != anotherContainer[i] { return false } } // 如果所有元素检查都相同则返回true return true } extension Array: Container {} var stackOfStrings = Stack<String>() stackOfStrings.push("uno") stackOfStrings.push("dos") stackOfStrings.push("tres") var arrayOfStrings = ["uno","dos","tres"] if allItemsMatch(stackOfStrings,arrayOfStrings) { print("All items match.") } else { print("Not all items match.") } // 输出 "All items match."