0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

アップキャスト、ダウンキャスト

Last updated at Posted at 2024-12-17

アップキャスト

・型の階層で「下位の型」を「上位の型」に変換すること。
asを使う。安全に行える。

let string = "hello" as Any // String型をAny型へアップキャスト

ダウンキャスト

・型の階層で「上位の型」を「下位の型」に変換すること。
as?as!を使う。

as?によるダウンキャスト

・失敗時: nilを返す(安全)。
・注意点: 結果がOptional型になるので注意。

let any = 1 as Any
let num = any as? Int // 成功 → Optional(1)
let str = any as? String // 失敗 → nil

as!による強制ダウンキャスト

・失敗時: 実行時エラーが発生(危険)。
・メリット: Optionalを扱う必要がない。

let any = 1 as Any
let num = any as! Int // 成功
let str = any as! String // 失敗 → 実行時エラー

まとめ

種類 説明 失敗時
アップキャスト as を使う。安全に型を変換する。 なし
ダウンキャスト as?nil を返す。安全。 nil を返す
as! → 実行時エラーが発生する。危険 実行時エラー
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?