if let type = ValueType.self as? Codable.Type {}
当协议具有关联类型时,例如RawRepresentable具有RawValue,当我这样做时:
if let type = ValueType.self as? RawRepresentable.Type {}
编译器将显示以下错误:
Protocol ‘RawRepresentable’ can only be used as a generic constraint because it has Self or associated type requirements
那么如何检查协议与相关类型的一致性?
解决方法 TL; DR在设置关联类型之前,编译器没有足够的信息来比较类型.
当您引用简单协议时,编译器从一开始就知道它的类型.
但是,当您引用具有关联类型的协议时,编译器在您声明它之前不会知道它的类型.
protocol ExampleProtocol { associatedtype SomeType func foo(param: SomeType)}
此时编译器看起来像这样:
protocol ExampleProtocol { func foo(param: <I don't kNow it,so I'll wait until it's defined>)}
声明符合协议的类时
class A: ExampleProtocol { typealias SomeType = String func foo(param: SomeType) { }}
编译器开始看到它像这样:
protocol ExampleProtocol { func foo(param: String)}
然后它能够比较类型.
总结以上是内存溢出为你收集整理的如何在Swift中检查与协议类型的协议的一致性?全部内容,希望文章能够帮你解决如何在Swift中检查与协议类型的协议的一致性?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)