1. ホーム
  2. クラス

[解決済み】Swift。switchステートメントでクラスの型をテストする

2022-04-07 10:09:20

質問

Swiftでは、'is'を使用してオブジェクトのクラスタイプをチェックすることができます。どのように私は 'スイッチ'ブロックにこれを組み込むことができますか?

無理だと思うので、この辺はどうなんでしょうかね。

どのように解決するのですか?

を使用することができます。 is の中に switch ブロックを作成します。Swift プログラミング言語の "Type Casting for Any and 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")
    }
}