回答:
あなたは絶対に使用することができます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")
}
}
is
」-そして彼はそれを決して使用しません。X)
case is Double
は答えで見ることができます
「case is- case is Int、is 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
thing
いずれでもin switch` を使用していないcase
ので、ここで何を使用するのthing
でしょうか?見に行きませんでした。ありがとう。