Skip to content

Instantly share code, notes, and snippets.

@AppleCEO
Created May 27, 2019 08:55
Show Gist options
  • Save AppleCEO/fa487edbfc863fa16eb13339d2c3980f to your computer and use it in GitHub Desktop.
Save AppleCEO/fa487edbfc863fa16eb13339d2c3980f to your computer and use it in GitHub Desktop.
이니셜라이저 위임 예제
struct TV {
var channel: Int = 1
var brand: String
init(channel: Int) {
self.channel = channel
self.brand = "LG"
}
init() {
self.init(channel: 15)
}
}
var tv = TV()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment