gpt4 book ai didi

swift - fatal error : Only BidirectionalCollections can be advanced by a negative amount

转载 作者:行者123 更新时间:2023-11-30 11:11:40 25 4
gpt4 key购买 nike

如何使用 Xcode Playground 将数组转换为集合?我们尝试过:

let a = Array(0 ..< 1000)
let s = Set(a)

这在运行时产生:

Fatal error: Only BidirectionalCollections can be advanced by a negative amount

Xcode 9.4 Playground 和 Xcode 10 beta 3 Playground 均出现问题。

最佳答案

此问题已在 Xcode 10 beta 6 及更高版本中修复,因此我更新了解决方法以仅适用于较旧的 swift 版本。

<小时/>

对于较旧的 Xcode 版本(如 Xcode 9.4),这可能是由于元素数量大于 100 造成的。

解决方法 found by Karoy Lorentey ,就是自定义Set的playground描述:

#if !swift(>=4.2)
extension Set: CustomPlaygroundDisplayConvertible {
public var playgroundDescription: Any {
return description
}
}
#endif

let a = Array(0 ..< 1000)
let s = Set(a)

这样做在运行时不会出错。

关于swift - fatal error : Only BidirectionalCollections can be advanced by a negative amount,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52128359/

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