0
2

More than 1 year has passed since last update.

【Swift】オプショナルのアンラップ方法

Posted at

強制アンラップ

var text: String? = "Hello world"

print(text!)

// Hello world

guard

var text: String? = "Hello world"

guard let text = text else { return }

print(text)

// Hello world

if let

var text: String? = "Hello world"

if let text = text {
    print(text)
}

// Hello world

デフォルト値

var text: String? = "Hello world"

print(text ?? "")

// Hello world
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