일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- dart
- Widget
- designPattern
- Leetcode
- pubspec
- it
- Swift
- Extentsion
- UIAccessibility
- SwiftGen
- listview
- keyWindow
- enumerations
- xcode
- github
- Equatable
- toyproject
- pubspec.yaml
- algorithm
- swiftlint
- IOS
- flutter
- ToDoRim
- reetcode
- basic
- tip
- OSLog
- GIT
- COMMIT
- protocol
- Today
- Total
목록enumerations (3)
수니의 개발새발
📑 이전글 [iOS/Swift/Basic] 열거형 Enumerations : 원시값 Raw Values, 연관값 Associated Values [iOS/Swift/Basic] 열거형 Enumerations : 항목 순회 - CaseIterable [iOS/Swift/Basic] 열거형 Enumerations : 순환 열거형 - indirect Comparable Swift 프로그래밍 언어에서 제공하는 프로토콜 이 프로토콜을 채택하면 연관 값(Associated Values)만 갖거나 연관 값(Associated Values)이 없는 열거형(Enumerations)은 각 케이스를 비교할 수 있다. 앞에 위치한 케이스가 더 작은 값 연관 값(Associated Values)이 없는 예제 enum Apple..
📑 이전글 [iOS/Swift/Basic] 열거형 Enumerations : 원시값 Raw Values, 연관값 Associated Values [iOS/Swift/Basic] 열거형 Enumerations : 항목 순회 - CaseIterable 순환 열거형 Recursive Enumerations 열거형(Enumerations)의 연관 값(Associated Values)이 열거형 자신의 값이고자 할 때 사용 이진 탐색 트리 등의 순한 알고리즘을 구현할 때 유용하게 사용 가능 indirect 순환 열거형(Recursive Enumerations)을 명시할 때 사용하는 키워드 indirect case 특정 항목(case)에만 한정 enum ArithmeticExpression { case number(..
열거형 Enumerations 연관된 항목들을 묶어서 표현할 수 있는 타입 프로그래머가 정의해준 항목 값 외에는 추가/수정이 불가 열거형(Enumerations)을 사용하는 경우 제한된 선택지를 주고 싶을 때 정해진 값 외에는 입력받고 싶지 않을 때 예상된 입력 값이 한정되어 있을 때 열거형(Enumerations)의 선언 // Pay Enumerations 선언 enum Pay { case cash // 현금 case card // 카드 case etc // 기타 case empty // 결제 종류 없음 } // Pay Enumerations 선언 - 한 줄 버전 enum Pay { case cash, card, etc, empty } 열거형(Enumerations) 변수의 생성 및 변경 var use..