泛型 – 符合协议的Swift泛型类型不能用于引用协议?
发布时间:2020-12-14 05:25:28 所属栏目:百科 来源:网络整理
导读:import UIKitprotocol Identifiable{}protocol Storage{ func test() - DataIdentifiable}class DiskStorageT where T:Identifiable,T:NSCoding:Storage{ func test() - DataIdentifiable { return DataT() //error: T is not identical to Identifiable }}c
import UIKit protocol Identifiable { } protocol Storage { func test() -> Data<Identifiable> } class DiskStorage<T where T:Identifiable,T:NSCoding>:Storage { func test() -> Data<Identifiable> { return Data<T>() //error: T is not identical to Identifiable } } class Data<T where T:Identifiable> { } 我认为可以使用符合协议的泛型类型来调用引用相同协议的方法.怎么施展呢?几乎尝试了一切,没有任何工作.也许我理解错了…… 对这一个人有什么帮助吗?非常感谢
试试这个
protocol Identifiable {} class Data<T where T:Identifiable> {} protocol Storage { typealias Element : Identifiable func test() -> Data<Element> } class DiskStorage<T where T:Identifiable,T:NSCoding>:Storage { func test() -> Data<T> { return Data<T>() } } // from REPL 32> var s = DiskStorage<Foo>() s: DiskStorage<Foo> = {} 33> s.test() $R0: Data<Foo> = {} 正如我在this answer中指出的,Data< T>与Data< Identifiable>无关.所以你不能使用Data< T>预期数据< Identifiable>的地方因而编译错误. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |