我正在尝试理解 Swift 中的泛型文化,所以我写了一个小例子。但它不编译。
错误:无法推断通用参数“P” 我做错了,我无法理解。
protocol Protocol_1 {
associatedtype T
}
protocol Protocol_A {}
struct SomeStruct_2: Protocol_A {}
struct SomeStruct_1: Protocol_1 {
typealias T = Protocol_A
}
let struct1 = SomeStruct_1()
testFunction(t: struct1) // *Generic parameter '' could not be inferred*
func testFunction<: Protocol_1>(t: P) where P.T : Protocol_A {
}
testFunction中的P.T不符合Protocol_A,但你可以检查它是否等于Protocol_A。
func testFunction<: Protocol_1>(t: P) where P.T == Protocol_A {
}
关于ios - 关联类型 Swift 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40783044/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |