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 |
Tags
- HIG
- 리팩토링
- swift documentation
- combine
- UICollectionView
- clean architecture
- SWIFT
- swiftUI
- Refactoring
- 리펙토링
- collectionview
- MVVM
- Clean Code
- 애니메이션
- tableView
- 클린 코드
- uiscrollview
- Xcode
- Observable
- ios
- Human interface guide
- 리펙터링
- UITextView
- 스위프트
- ribs
- map
- rxswift
- Protocol
- uitableview
- RxCocoa
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift 공식 문서] 9. Structures and Classes 본문
Structures and Classes
- swift에서는 class의 인스턴스를 object라고 하지 않고, 기능에 가까운 언어이므로 "instance"라고 명명
- Class에서만 있는 속성
- 상속
- type casting: 런타임에 클래스 instance의 유형을 확인하고 해석
- Deinitialzer는 클래스의 instance가 할당 된 리소스를 해제할 수 있도록 하는 기능
- reference counting을 통해 한 클래스 instance에 대한 하나 이상의 참조를 허용
Structure와 Enum은 value type
- copy - by - value
let hd = Resolution(width: 1920, height: 1080)
var cinema = hd
cinema.width = 2048 // copy - by - value
cinema.width // 2048
hd.width // 1920
Identity Operator
- class는 reference type이기 때문에 동일한 단일 instance를 참조 가능
- Identity Operator는 참조하는 대상 instance를 비교하는 연산자
- 두 가지 존재: ===, !==
- 일반적으로 reference type을 비교할때는 compile error 발생
- Identity Operator 사용하여 비교
print(referenceFirst === referenceSecond) // true
'swift 공식 문서' 카테고리의 다른 글
[iOS - swift 공식 문서] 11. Methods (메서드) (0) | 2021.06.29 |
---|---|
[iOS - swift 공식 문서] 10. Properties (프로퍼티) (0) | 2021.06.26 |
[iOS - swift 공식 문서] 8. Enumerations (열거형) (0) | 2021.06.24 |
[iOS - swift 공식 문서] 7. Closure (클로저) (0) | 2021.06.24 |
[iOS - swift 공식 문서] 6. Functions (함수) (0) | 2021.06.23 |
Comments