Swift: ประเภทการทดสอบคลาสในคำสั่ง switch


207

ใน Swift คุณสามารถตรวจสอบประเภทคลาสของวัตถุโดยใช้ 'is' ฉันจะรวมสิ่งนี้ลงในบล็อค 'สวิตช์' ได้อย่างไร

ฉันคิดว่ามันเป็นไปไม่ได้ดังนั้นฉันจึงสงสัยว่าอะไรคือวิธีที่ดีที่สุดในรอบนี้

คำตอบ:


436

คุณสามารถใช้isในswitchบล็อกอย่างแน่นอน ดู "การคัดเลือกนักแสดงประเภทใดก็ได้และ AnyObject" ในภาษาโปรแกรม Swift (แม้ว่าจะไม่ได้ จำกัด อยู่Anyแต่อย่างใด) พวกเขามีตัวอย่างมากมาย:

for thing in things {
    switch thing {
    case 0 as Int:
        println("zero as an Int")
    case 0 as Double:
        println("zero as a Double")
    case let someInt as Int:
        println("an integer value of \(someInt)")
    case let someDouble as Double where someDouble > 0:
        println("a positive double value of \(someDouble)")
// here it comes:
    case is Double:
        println("some other double value that I don't want to print")
    case let someString as String:
        println("a string value of \"\(someString)\"")
    case let (x, y) as (Double, Double):
        println("an (x, y) point at \(x), \(y)")
    case let movie as Movie:
        println("a movie called '\(movie.name)', dir. \(movie.director)")
    default:
        println("something else")
    }
}

2
สวัสดี Rob เพียงแค่อยากรู้อยากเห็น: เนื่องจากเราไม่ได้ใช้thingในสวิตช์ `ในใด ๆcaseข้างต้นสิ่งที่จะใช้ที่นี่ใช้thing? ฉันไม่เห็นมัน ขอบคุณ
Unheilig

3
สิ่งที่เป็นค่าการทดสอบในแต่ละกรณี ดังนั้นหากสิ่งนั้นเป็นภาพยนตร์ค่าของมันจะถูกผูกไว้กับภาพยนตร์สัญลักษณ์
Rob Napier

5
"คุณสามารถใช้อย่างแน่นอนis" - แล้วเขาก็ไม่เคยใช้มัน X)
Raphael

3
@ ราฟาเอลฉันเห็นcase is Doubleในคำตอบ
โกเบ

2
@Gobe ฉันไม่ดีพลาดมัน :> ข้อแก้ตัวของฉัน: บางทีมันอาจไม่ใช่ตัวอย่างที่ชัดเจนที่สุด?
Raphael

46

การวางตัวอย่างสำหรับการดำเนินการ "case is - case is Int คือ String: " ซึ่งสามารถใช้หลายกรณีพร้อมกันเพื่อทำกิจกรรมเดียวกันสำหรับประเภทวัตถุที่คล้ายกัน ที่นี่","การแยกประเภทในกรณีที่ใช้งานเหมือนกับตัวดำเนินการOR

switch value{
case is Int, is String:
    if value is Int{
        print("Integer::\(value)")
    }else{
        print("String::\(value)")
    }
default:
    print("\(value)")
}

ลิงค์สาธิต


11
การรวมสองกรณีไว้ด้วยกันเพื่อแยกพวกเขาออกจากกันifอาจไม่ใช่ตัวอย่างที่ดีที่สุดในการพิสูจน์ประเด็นของคุณ
warly

1
มันอาจจะดีกว่าถ้าvalueเป็นสิ่งที่สามารถเป็นหนึ่งในInt, Float, DoubleและการรักษาFloatและDoubleวิธีการเดียวกัน
noamtm

30

ในกรณีที่คุณไม่มีค่าเพียงวัตถุใด ๆ :

รวดเร็ว 4

func test(_ val:Any) {
    switch val {
    case is NSString:
        print("it is NSString")
    case is String:
        print("it is a String")
    case is Int:
        print("it is int")
    default:
        print(val)
    }
}


let str: NSString = "some nsstring value"
let i:Int=1
test(str) 
// it is NSString
test(i) 
// it is int

17

ฉันชอบไวยากรณ์นี้:

switch thing {
case _ as Int: print("thing is Int")
case _ as Double: print("thing is Double")
}

เนื่องจากมันช่วยให้คุณมีความเป็นไปได้ที่จะขยายการทำงานอย่างรวดเร็วเช่นนี้

switch thing {
case let myInt as Int: print("\(myInt) is Int")
case _ as Double: print("thing is Double")
}
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.