반응형
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
- subject
- Bug
- Creating Operators
- @State
- NullObject
- SwiftUI
- SWIFT
- @EnvironmentObject
- RxSwift
- init
- Xcode
- graphql
- Operater
- URL(string:)
- operator
- NavigationLink
- IOS
- dismiss
- vim
- nestjs
- init?
- typeorm
- swift6
- nonisolated
- RxCocoa
- ios14
- @Binding
- @Environment
- RFC1738/1808
- Operators
Archives
- Today
- Total
목록?? (1)
Tunko Development Diary
swift) ?? 연산자
Nil 병합 연산자 (Nil - Coalescing Operator) nil 병합 연산자는 a ?? b 형태를 갖는 연산자 입니다. 옵셔널 a를 벗겨서 unwraps 만약 a가 nil 경우 b를 반환합니다. 이 nil 병합 연산자는 다음 코드의 축약형 입니다. a != nil ? a! : b if a != nil { return a! } else { return b } 출처 : https://jusung.gitbook.io/the-swift-language-guide/language-guide/02-basic-operators#nil-nil-coalescing-operator
Development/iOS 개발
2022. 6. 20. 15:17