Created
May 27, 2019 09:27
-
-
Save AppleCEO/cf2f4b5cca444c082bb6141a39bc164d 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 { } | |
| let square = Square(name: "운동장") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment