Swift:在switch语句中测试类类型


206

在Swift中,您可以使用'is'检查对象的类类型。如何将其合并到“ switch”块中?

我认为这是不可能的,所以我想知道解决此问题的最佳方法是什么。

Answers:


436

您绝对可以is在一个switch块中使用。请参阅Swift编程语言中的“ Any和AnyObject的类型转换”(尽管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
嗨,罗布 只是出于好奇:由于我们thing在以上任何一项中均未在switch`中使用,因此在case这里使用有thing什么用?我没看到 谢谢。
Unheilig 2015年

3
问题是每种情况下要测试的价值。因此,如果事物是​​电影,则其值将绑定到符号电影。
Rob Napier 2015年

5
“您绝对可以使用is”-然后他从不使用它。X)
拉斐尔

3
我能case is Double在答案中看到@Raphael
Gobe

2
@Gobe我不好,错过了。:>我的借口:也许这不是最具说明性的例子?
拉斐尔

46

以“ case is- case is Int,is String: ”操作为例,可以将多个case组合使用,以对“相似对象”类型执行相同的活动。在这种情况下,如果类型像OR运算符一样,则分隔类型的“,”

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

演示链接


11
将两个案例放在一起以通过它们分开if可能不是证明您观点的最佳示例。
谨慎的

1
它可能会更好,如果value是的东西,可以是一个IntFloatDouble,和治疗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")
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.