Last active
May 27, 2019 08:47
-
-
Save AppleCEO/3a8bfa5b1823c192f7bfae49ecd40880 to your computer and use it in GitHub Desktop.
실패 가능한 이니셜라이저 예제
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct Animal { | |
let species: String | |
init?(species: String) { | |
if species.isEmpty { return nil } | |
self.species = species | |
} | |
} | |
var animal = Animal(species: "") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment