Created
May 27, 2019 09:20
-
-
Save AppleCEO/796f5bf9df00c6abe1fe15ec519579ca 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
| class Shape { | |
| var numberOfSides: Int = 0 | |
| var name: String | |
| init(name: String) { | |
| self.name = name | |
| } | |
| } | |
| class Square: Shape { | |
| var sideLength: Double | |
| init(sideLength: Double, name: String) { | |
| self.sideLength = sideLength | |
| super.init(name: name) | |
| } | |
| } | |
| let square = Square(sideLength: 33.3, name: "운동장") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment