Created
May 27, 2019 09:06
-
-
Save AppleCEO/0619a5b4dd6ba73e30d133062e7bee7f 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 Radio { | |
| var channel: Double | |
| init(channel: Double) { | |
| self.channel = channel | |
| } | |
| convenience init(){ | |
| self.init(channel: 103.5) | |
| } | |
| } | |
| let radio = Radio() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment