小编典典

Swift Array - 检查索引是否存在

all

在 Swift 中,有没有办法检查数组中是否存在索引而不会引发致命错误?

我希望我能做这样的事情:

let arr: [String] = ["foo", "bar"]
let str: String? = arr[1]
if let str2 = arr[2] as String? {
    // this wouldn't run
    println(str2)
} else {
    // this would be run
}

但我明白了

致命错误:数组索引超出范围


阅读 102

收藏
2022-08-20

共1个答案

小编典典

Swift 中的一种优雅方式:

let isIndexValid = array.indices.contains(index)
2022-08-20