如何在Swift中捕获“索引超出范围”?

如何在Swift中捕获“索引超出范围”?,第1张

如何在Swift中捕获“索引超出范围”?

正如评论和其他答案中所建议的那样,最好避免这种情况。但是,在某些情况下,您可能需要检查数组中是否存在某个项目以及是否确实将其返回。为此,您可以使用下面的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}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5171494.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-18
下一篇 2022-11-18

发表评论

登录后才能评论

评论列表(0条)

保存