模式匹配并在单个Switch语句中有条件地绑定

时间:2016-08-16 16:49:19

标签: swift swift2 switch-statement swift3 conditional-binding

有没有办法将此if / else if / else梯形图写为switch语句?

let x: Any = "123"

if let s = x as? String {
    useString(s)
}
else if let i = x as? Int {
    useInt(i)
}
else if let b = x as? Bool {
    useBool(b)
}
else {
    fatalError()
}

这是我的尝试:

switch x {
case let s where s is String:   useString(s)
case let i where i is Int:      useInt(i)
case let b where b is Bool:     useBool(b)
default: fatalError()
}

它成功选择了正确的路径,但s / i / b仍为Any类型。 is检查对它们的投射没有任何影响。这迫使我在使用前强制使用as!

有没有办法在一个switch语句中打开类型并将其绑定到名称?

1 个答案:

答案 0 :(得分:8)

当然,您可以使用conditional casting pattern case let x as Type

let x: Any = "123"

switch x {
case let s as String:
    print(s)   //use s
case let i as Int:
    print(i)   //use i
case let b as Bool:
    print(b)   //use b
default:
    fatalError()
}