gpt4 book ai didi

swift - Self 作为通用回调的参数类型

转载 作者:行者123 更新时间:2023-11-28 07:04:50 25 4
gpt4 key购买 nike

我正在尝试为支持特定协议(protocol)的每种类型实现通用广播功能。例如:

protocol Proto {
typealias ItemType
typealias Callback = (Self, ItemType)

func register(tag: String, cb: Callback)
func unregister(tag: String)
}

class Foo : Proto {
typealias ItemType = Int

func register(tag: String, cb: (Foo, Int)) {

}

func unregister(tag: String) {

}
}

func bc <T: Proto> (p: T, value: T.ItemType, os: [String: T.Callback]) {
for (k, v) in os {
v(p, value) // error: cannot invoke v with argument list of...
}
}

问题是如何正确实现bc功能?

最佳答案

我认为 swift 在这个地方有问题。也许你可以使用

protocol Proto {
typealias ItemType

func register(tag: String, cb: (Self, Self.ItemType)->())
func unregister(tag: String, cb: (Self, Self.ItemType)->())
}

class Foo : Proto {

func register(tag: String, cb: (Foo, Int)->()) {

}
func unregister(tag: String, cb: (Foo, Int)->()) {

}
}

func bc <T: Proto> (p: T, value: T.ItemType, os: [String : (T,T.ItemType)->()]) {
for (_, vc) in os {
vc(p, value) // error: cannot invoke v with argument list of...
}
}

关于swift - Self 作为通用回调的参数类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30952213/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com