Sets Set 형태로 저장되기 위해선 반드시 타입이 hashable 이어야 합니다. Swift에서 String, Int, Double, Bool 같은 기본 타입은 hashable입니다. Swift에서 Set 타입은 Set으로 선언 합니다. 빈 Set 생성 var letters = Set() print("letters is of type Set with \(letters.count) items..") 위처럼 타입을 지정해 놓으면 아래와 같이 사용할 수 있습니다. letters.insert("a") print(letters) // ["a"] letters = [] // Set([]) 배열 리터럴을 이용한 Set 생성 var favoriteGenres: Set = ["Rock", "Classic", "Lof..
Swift에선 콜렉션 타입으로 Array(배열), Set, Dictionary(사전) 세 가지를 지원합니다. 이 글에선 Array만 알아보도록 할게요 !! 콜렉션의 가변성 Array, Set, Dictionary를 변수(var)에 할당하면 이 콜렉션은 변경가능하고, 상수(let)에 할당하면 변경할 수 없습니다. 배열(Arrays) 배열 타입은 아래처럼 나타낼 수 있습니다. Array // 기본형 // 또는 [Element] // 축약형 빈 배열 생성 빈 배열의 경우 아래와 같이 표기 합니다. var someInts: [Int] = [] print("someInts is of type [Int] with \(someInts.count) items.") // someInts is of type [Int] w..
- Total
- Today
- Yesterday
- Swift RIBs
- Swift inout
- RIBs tutorial
- Swift 내림차순
- 2023년 회고
- Swift 프로그래머스
- Swift 알고리즘
- 원티드 프리온보딩
- swift reduce
- Swift Error Handling
- swift programmers
- Swift
- swift protocol
- swift 고차함수
- Class
- CS 네트워크
- ios
- Swift joined()
- Swift joined
- removeLast()
- Swift ModernRIBs
- Swift 프로퍼티
- Swift init
- iOS error
- swift (programmers)
- RTCCameraVideoCapturer
- Combine: Asynchronous Programming with Swift
- Swift final
- swift property
- Swift Leetcode
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |