Swift协议inheritance和协议一致性问题
protocol BasePresenterProtocol : class {} protocol DashboardPresenterProtocol : BasePresenterProtocol {} final class DashboardPresenter { weak var view: DashboardPresenterProtocol? init() { self.view = DashboardViewController() } func test() { print("Hello") } } extension DashboardPresenter: DashboardViewProtocol { } protocol BaseViewProtocol : class { weak var view: BasePresenterProtocol? { get set } } protocol DashboardViewProtocol : BaseViewProtocol { } class DashboardViewController { } extension DashboardViewController: DashboardPresenterProtocol { }
在上面的代码中,我得到一个错误在下面的行
extension DashboardPresenter: DashboardViewProtocol { }
那DashboardPresenter
不确认协议DashboardViewProtocol
,但我已经宣布weak var view: DashboardPresenterProtocol?
在DashboardPresenter
。 虽然我已经宣布
为什么我得到这个错误? 请让我知道我在这个代码中做错了什么。
您无法实现BasePresenterProtocol?
types的读写属性要求BasePresenterProtocol?
具有DashboardPresenterProtocol?
types的属性DashboardPresenterProtocol?
。
考虑一下如果这可能会发生什么,并且将DashboardViewProtocol
的实例上传到DashboardViewProtocol
。 您可以将符合BasePresenterProtocol
任何内容分配给DashboardPresenterProtocol?
types的属性DashboardPresenterProtocol?
– 这将是非法的。
出于这个原因,读写属性要求必须是不变的(尽pipe值得注意的是只读属性需求应该是协变的, 但目前不支持 )。
尽pipe在任何情况下, 协议都不符合自己 ,所以甚至不能使用DashboardPresenterProtocol?
作为符合BasePresenterProtocol?
的typesBasePresenterProtocol?
。