swift3.0:associatedtype

Posted 暴风雨过后的代码工厂

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift3.0:associatedtype相关的知识,希望对你有一定的参考价值。

E文:https://developer.apple.com/library/content/documentation/Swift/Conceptual/Swift_Programming_Language/Generics.html

associatedtype用于protocol中 associatedtype类型是在protocol中代指一个确定类型并要求该类型实现指定方法

比如 我们定义一个protocol

protocol Container {
    associatedtype ItemType
    mutating func append(_ item: ItemType)
    var count: Int { get }
    subscript(i: Int) -> ItemType { get }
}

  之后实现这个协议

struct IntStack: Container {
    // original IntStack implementation
    var items = [Int]()
    mutating func push(_ item: Int) {
        items.append(item)
    }
    mutating func pop() -> Int {
        return items.removeLast()
    }
    // conformance to the Container protocol
    typealias ItemType = Int
    mutating func append(_ item: Int) {
        self.push(item)
    }
    var count: Int {
        return items.count
    }
    subscript(i: Int) -> Int {
        return items[i]
    }
}

 其中items实现了ItemType这个代指变量

由于swift的类型推断,你实际上并不需要声明一个具体ItemTypeInt作为定义的一部分IntStack由于IntStack符合所有的要求Container协议,swift可以推断出适当的ItemType使用,只需通过查看类型append(_:)方法的item参数和标的返回类型。事实上,如果你删除typealias ItemType = Int上面从代码行,一切仍然有效,因为很明显应该使用什么类型ItemType

以上是关于swift3.0:associatedtype的主要内容,如果未能解决你的问题,请参考以下文章

associatedtype关联类型

Swift 协议扩展,AssociatedType 被限制为集合,不能使用下标

associatedtype 协议一致性问题

swift-associatedtype关键字

协议只能用作通用约束,因为它具有 Self 或 associatedType 要求

swift protocol(协议) associatedtype关联类型