Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Protocol
- Human interface guide
- ribs
- UITextView
- collectionview
- map
- Xcode
- UICollectionView
- clean architecture
- Observable
- 리팩토링
- SWIFT
- ios
- tableView
- 리펙토링
- HIG
- 리펙터링
- 클린 코드
- Refactoring
- 스위프트
- swift documentation
- MVVM
- Clean Code
- rxswift
- combine
- swiftUI
- uitableview
- uiscrollview
- RxCocoa
- 애니메이션
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift 공식 문서] 13. Inheritance (상속) 본문
Inheritance
- 클래스들 간의 상속 관계 superclass(부모), subclass(자식)
Base class
- Base class의미: 다른 클래스에서 상속하지 않는 클래스
class Vehicle {
var currentSpeed = 0.0
var description: String {
return "traveling at \(currentSpeed) miles per hour"
}
func makeNoise() {
// do nothing - an arbitrary vehicle doesn't necessarily make a noise
}
}
subclassing
- subclassing: 기존 클래스를 기반으로 새로운 클래스를 만드는 작업
class Bicycle: Vehicle {
var hasBasket = false
}
Overriding
- subclass는 superclass에서 상속: instance method, type method, instance property, type property, subcript
- 상속 될 특성을 override하려면 override키워드 접두사로 지정
- override키워드가 존재하는 이유: overrdie한다는 것을 명확히하며 override 키워드가 없는 경우 컴파일 오류 발생
super class method
- super 키워드 사용
- superclass에 있는 someMethod()의 메소드를 subclass에서 호출: super.someMethod()
Method Overriding
- method를 override
class Train: Vehicle {
override func makeNoise() {
print("Choo Choo")
}
}
let train = Train()
train.makeNoise()
// Prints "Choo Choo"
Getter, Setter 재정의
- override할때 setter를 제공하는 경우 > 필수로 getter도 제공
- Getter 재정의
class Car: Vehicle {
var gear = 1
override var description: String {
return super.description + " in gear \(gear)"
}
}
property Observer 재정의
- observer 추가 가능: didSet, willSet
class AutomaticCar: Car {
override var currentSpeed: Double {
didSet {
gear = Int(currentSpeed / 10.0) + 1
}
}
}
Override 방지
- final 키워 사용
- final var
- final func
- final class
- final subscript
- cf) class func: 전역 함수지만 상속 가능
'swift 공식 문서' 카테고리의 다른 글
[iOS - swift 공식 문서] 15. Optional Chaining (옵셔널 체이닝) (0) | 2021.07.12 |
---|---|
[iOS - swift 공식 문서] 14. Deinitialization (인스턴스 해제 초기화) (0) | 2021.07.11 |
[iOS - swift 공식 문서] 12. Subscripts (0) | 2021.07.03 |
[iOS - swift 공식 문서] 11. Methods (메서드) (0) | 2021.06.29 |
[iOS - swift 공식 문서] 10. Properties (프로퍼티) (0) | 2021.06.26 |
Comments