티스토리 뷰
Self vs self - what's the difference? 에 대해서는 대충 알고 있었지만,
예전에 iOS Test-Driven Development by Tutorials (raywenderlich) 를 보다가
샘플코드 중, 이런 식으로 되어있는 것을 보고 좀 헷갈려서 Self Type 문서를 봐야지~~ 했는데 이제야 봅니다,,,
https://docs.swift.org/swift-book/ReferenceManual/Types.html#grammar_self-type
Self type은 specific type은 아니고, current type을 의미합니다.
해당 type의 이름을 알지 않고도, current type을 편하게 참조할 수 있고
해당 type의 이름을 반복하며 코드를 작성해주기 싫을 때 유용하게 사용할 수 있습니다.
protocol, structure, class, enum 안에서 사용할 수 있습니다.
예를들어 class 안에서 Self는 아래와 같은 항목에서 사용될 수 있습니다.
- As the return type of a method
- As the return type of a read-only subscript
- As the type of a read-only computed property
- In the body of a method
Self type은 type(of:) function과 같은 type을 참조합니다.
Self.someStaticMember 와 type(of: self).someStaticMember 는 같습니다.
그리고 문서에서 나오는 예제!
class Superclass {
func f() -> Self { return self }
}
class Subclass: Superclass { }
let x = Superclass()
print(type(of: x.f()))
// Prints "Superclass"
let y = Subclass()
print(type(of: y.f()))
// Prints "Subclass"
let z: Superclass = Subclass()
print(type(of: z.f()))
// Prints "Subclass"
마지막 예제는 Self가 compile-time type (SuperClass) 이 아니라 runtime type (Subclass) 를 참조한다는 것을 보여줍니다.
+
아래 블로그 글 엄청 친절하게 설명해주셔서 추천!
'🍏 > Swift' 카테고리의 다른 글
Swift, Dart, Python % Operator 비교 (0) | 2021.12.07 |
---|---|
[Swift] assert, precondition, fatalError (1) | 2021.12.05 |
[Swift Algorithms] chunks(ofCount:) (0) | 2021.09.28 |
[Swift] async / await 사용사례 (0) | 2021.07.06 |
[Swift] async / await 동작원리 (0) | 2021.07.06 |
- Total
- Today
- Yesterday
- 구글 Geocoding API
- Python Type Hint
- Flutter Clipboard
- 플러터 싱글톤
- SerializerMethodField
- Watch App for iOS App vs Watch App
- Flutter getter setter
- PencilKit
- github actions
- ribs
- flutter deep link
- METAL
- 장고 URL querystring
- Django FCM
- Sketch 누끼
- 플러터 얼럿
- Dart Factory
- cocoapod
- DRF APIException
- Django Heroku Scheduler
- ipad multitasking
- Flutter Spacer
- 장고 Custom Management Command
- flutter build mode
- Flutter 로딩
- flutter 앱 출시
- Flutter Text Gradient
- Django Firebase Cloud Messaging
- drf custom error
- flutter dynamic 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 |