LoginSignup
3
2

More than 5 years have passed since last update.

Optionalは型指定しないとエラーになる。

Posted at

メモ:そういや、どうなるんだろうとふとした疑問。

Sample.swift

let a1 = nil  // Error
let a2:Int? = nil //OK
var a3 = nil //Error
var a4:String? = nil //OK 

そらそうか。^^

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