Swift数组-检查索引是否存在

在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

}

但是我明白了

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

回答:

Swift中的一种优雅方式:

let isIndexValid = array.indices.contains(index)

以上是 Swift数组-检查索引是否存在 的全部内容, 来源链接: utcz.com/qa/403862.html

回到顶部