98
77

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

guard letとif letの使い分け

Last updated at Posted at 2018-07-04

guard let

これ以上処理を進めたくない場合に使用します。
nilが入っていたらエラーとして扱うケースだった場合などによく使います。

let hoge: String? = nil //`hoge`の中身は`nil`

guard let fuga = hoge else { return } //`hoge`は`nil`なのでreturnされる
//`hoge`が`nil`ではなかった時の後続処理…

if let

nilだった場合に行う処理が異なる時に使用します。
nilの場合はAの処理、nilでない場合はBの処理をしたいなどのケースでよく使います。

let hoge: String? = nil //`hoge`の中身は`nil`
if let fuga = hoge { 
    //`hoge`が`nil`ではない場合にこっち
    //後続処理へ…
} else {
    //`hoge`が`nil`の場合にこっち
    //後続処理へ…
}
98
77
1

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
98
77

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?