This question already has answers here:
Use logical operator as combine closure in reduce

(6 个回答)


4年前关闭。




如果我想用这个片段计算列表中的所有 Bool 是否都是 true ,为什么不能正确推断类型?
let bools = [false, true, false, true]
let result = bools.reduce(true, combine: &&)

最佳答案

不久前我遇到了同样的错误(但后来遇到了 || )。如果要为此使用 reduce,最简单的解决方案是编写

let result = bools.reduce(true, combine: { $0 && $1 })

或者
let result = bools.reduce(true) { $0 && $1 }

反而。正如评论中指出的那样,您还可以使用
let result = !bools.contains(false)

这不仅更具可读性,而且效率也更高,因为它会在第一次遇到 false 时停止,而不是遍历整个数组(尽管编译器可能会对此进行优化)。

关于swift - 对成员 && 的不明确引用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38162052/

10-11 19:27