swift – 无法使用类型为'((_) – > _)’的参数列表调用’filter’

前端之家收集整理的这篇文章主要介绍了swift – 无法使用类型为'((_) – > _)’的参数列表调用’filter’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
听起来很可笑,但我无法修复这段代码
self.runningScripts.filter({ $0 != scriptRunner })

无论我如何写封闭,我总是得到这个错误

Cannot invoke ‘filter’ with an argument list of type ‘((_) -> _)

runningScripts定义如下:

var runningScripts = [ScriptRunner]()

ScriptRunner是一个Swift类(不继承NSObject)

我在许多其他地方使用几乎相同的地方没有问题.有什么建议么?

如果没有使ScriptRunner符合Equatable,则可以得到该错误
class ScriptRunner : Equatable {
    // the rest of your implementation here
}

func ==(lhs: ScriptRunner,rhs: ScriptRunner) -> Bool {
    return ... // change this to whatever test that satisfies that lhs and rhs are equal
}
原文链接:https://www.f2er.com/swift/319626.html

猜你在找的Swift相关文章