LoginSignup
3
0

More than 5 years have passed since last update.

戻り値のある関数・メソッド内でguard文を使う

Posted at

戻り値のある関数やメソッド内で定義したguard文に戻り値を設定しないと、コンパイルエラーが起きてしまいます…。

var num:Int?

func numFunc() -> Int {

    num = 123

    guard let num_ = num else { return } // コンパイルエラーが起きる

    return num_
}
print(numFunc())

これを回避するには、”guard文でその関数・メソッドの戻り値の型の空要素を返す”ことで回避することができます!

var num:Int?

func numFunc() -> Int {

    num = 123

    guard let num_ = num else { return 0 } // 戻り値の型の空要素を返す

    return num_
}
print(numFunc())
3
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
3
0