반응형
iOS 16.1, Xcode 14.1, Swift 5, UIKit 환경에서 진행했습니다.
var arrayInt = [Int](repeating: 0, count: 3)
var arrayString = [String](repeating: "A", count: 3)
print(arrayInt) // [0, 0, 0]
print(arrayString) // ["A", "A", "A"]
2차 배열의 초기화
var graph = [[Int]](repeating: [Int](repeating: 0, count: 20), count: 20)
반응형
'iOS > 문법' 카테고리의 다른 글
[iOS, Swift] Swift 문법 sorted 예제 (0) | 2023.03.12 |
---|---|
[iOS, Swift] 구조체와 클래스의 차이 (1) | 2023.02.13 |
[iOS, Swift] 랜덤한 숫자 구하기 (0) | 2023.02.10 |
[iOS, Swift] Swift 문법 compactMap 예제 (0) | 2023.02.09 |
[iOS, Swift] Swift 문법 Reduce 예제 (0) | 2023.02.07 |