0
2

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 1 year has passed since last update.

【Swift】guardってむずくね

Posted at

はじめに

guard文を使用していて「!?」と思ったことがあったので記録しておきます。

パターン1

このパターンはurlnilチェックをしています。
nilの場合はelse節が実行され、nilでない場合は下に処理が移ります。
この例ではurlnilなのでprint("❌: URLが見つかりませんでした")が実行されます。

let url: URL? = nil
guard let url else { return print("❌: URLが見つかりませんでした") }
print("✅: \(url)")

パターン2

このパターンはboolの真偽チェックをしています。
falseの場合はelse節が実行され、trueの場合は下に処理が移ります。
この例ではboolfalseなのでprint("❌: false")が実行されます。

let bool: Bool = true
guard bool else { return print("❌: false") }
print("✅: \(bool)")

おわり

letがないだけで変わりすぎでしょ。
パターン2に関してはif文でよくないですか?
if文とどういった使い分けをするのか気になります。

0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?