正如评论和其他答案中所建议的那样,最好避免这种情况。但是,在某些情况下,您可能需要检查数组中是否存在某个项目以及是否确实将其返回。为此,您可以使用下面的Array扩展名来安全地返回数组项。
迅捷3
extension Collection where Indices.Iterator.Element == Index { subscript (safe index: Index) -> Generator.Element? { return indices.contains(index) ? self[index] : nil }}
迅捷2
extension Array { subscript (safe index: Int) -> Element? { return indices ~= index ? self[index] : nil }}
- 这样你永远 不会打
Index out of range
- 您必须检查项目是否为
nil
当我让ar = [1,3,4],然后让v = ar [5]时,在Xpre
8.3.2的Playground中尝试Swift3代码仍然会导致“崩溃”。为什么?–托马斯·滕佩尔曼5月17日17:40
你必须使用我们定制的标所以不是
let v = ar[5],它是无线本地环路
let v = ar[safe: 5]。
从数组默认获取值。
let boo = foo[index]
添加使用自定义下标。
let boo = fee[safe: index]// And we can warp the result using guard to keep the pre going without throwing the exception.guard let boo = foo[safe: index] else { return}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)