在 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)