在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 }
但我得到
fatal error: Array index out of range
Swift中的一个优雅的方式:
原文链接:https://www.f2er.com/swift/320783.htmllet isIndexValid = array.indices.contains(index)