-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Intinalizer & Convenience init #5
Comments
|
Initializers생성자는 특정 타입의 새 인스턴스를 생성할 때 호출됨. 가장 기본적인 형태로는 파라미터가 없는 인스턴스 메서드와 같음. init() {
// 여기서 초기화를 실행
} Designated and Convenience initializersinit(파라미터) {
// 구문
} convenience init(파라미터) {
// 구문
} 클래스타입의 이니셜라이저 위임 규칙
|
initializer은 특정 타입의 새로운 인스턴스를 만들기 위해 호출되며 Convenience init은 init을 보조하는 역할 |
|
initializer |
2022.12.26 (월) 모임 전까지 작성해주세요.
The text was updated successfully, but these errors were encountered: