ใน 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
}
แต่ฉันได้
ข้อผิดพลาดร้ายแรง: ดัชนีอาร์เรย์อยู่นอกช่วง
index < array.count
ใช่ไหม?