无法使用已定义通用类型的协议

问题描述

如果我已经定义T中的StringSomeUseCaseProtocol类型的话,我似乎无法理解为什么会出现此错误。有什么解决方法吗?

protocol UseCase {
    associatedtype T
    func execute(params: T)
}

protocol SomeUseCaseProtocol: UseCase where T == String { }

class SomeClass {
    init(someUseCase: SomeUseCaseProtocol) { // <-- ERROR: Protocol SomeUseCaseProtocol can only be used as a generic constraint because it has Self or associated type requirements
        ...
    }
}

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)