Skip to content

Instantly share code, notes, and snippets.

@AppleCEO
Created May 27, 2019 09:27
Show Gist options
  • Select an option

  • Save AppleCEO/cf2f4b5cca444c082bb6141a39bc164d to your computer and use it in GitHub Desktop.

Select an option

Save AppleCEO/cf2f4b5cca444c082bb6141a39bc164d to your computer and use it in GitHub Desktop.
지정 이니셜라이저의 상속 예제
class Shape {
var numberOfSides: Int = 0
var name: String
init(name: String) {
self.name = name
}
}
class Square: Shape { }
let square = Square(name: "운동장")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment