ใน Swift คุณสามารถตรวจสอบประเภทคลาสของวัตถุโดยใช้ 'is' ฉันจะรวมสิ่งนี้ลงในบล็อค 'สวิตช์' ได้อย่างไร
ฉันคิดว่ามันเป็นไปไม่ได้ดังนั้นฉันจึงสงสัยว่าอะไรคือวิธีที่ดีที่สุดในรอบนี้
ใน Swift คุณสามารถตรวจสอบประเภทคลาสของวัตถุโดยใช้ 'is' ฉันจะรวมสิ่งนี้ลงในบล็อค 'สวิตช์' ได้อย่างไร
ฉันคิดว่ามันเป็นไปไม่ได้ดังนั้นฉันจึงสงสัยว่าอะไรคือวิธีที่ดีที่สุดในรอบนี้
คำตอบ:
คุณสามารถใช้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")
}
}
is
" - แล้วเขาก็ไม่เคยใช้มัน X)
case is Double
ในคำตอบ
การวางตัวอย่างสำหรับการดำเนินการ "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)")
}
if
อาจไม่ใช่ตัวอย่างที่ดีที่สุดในการพิสูจน์ประเด็นของคุณ
value
เป็นสิ่งที่สามารถเป็นหนึ่งในInt
, Float
, Double
และการรักษาFloat
และDouble
วิธีการเดียวกัน
ในกรณีที่คุณไม่มีค่าเพียงวัตถุใด ๆ :
รวดเร็ว 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
ฉันชอบไวยากรณ์นี้:
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")
}
thing
ในสวิตช์ `ในใด ๆcase
ข้างต้นสิ่งที่จะใช้ที่นี่ใช้thing
? ฉันไม่เห็นมัน ขอบคุณ