728x90
kotlinlang.org/docs/reference/basic-types.html#arrays
배열 생성 방법
var n = IntArrayOf(1,2,3)
val n1 = IntArray(5) { 42 } //42로 초기화
var n2 = IntArray(5) { it * 1 }
//[0] = 0*1, [1] = 1*1, [2] = 2*1, [3] = 3*1, [4] = 4*1
가장 많이 쓰이는 방법.
그 외에도
val n = arrayOf<Int>(1, 2, 3)
배열 참조 방법
println(n.get(0))
println(n[0])
배열 수정 방법
n.set(index, value)
n[index] = value
배열을 알았다면 같이 보면 좋을 것..!
korean-otter.tistory.com/entry/kotlin-collection-List-Set-Map
728x90
'kotlin > 문법' 카테고리의 다른 글
[kotlin] 확장함수 (0) | 2023.05.11 |
---|---|
[kotlin] collection (List, Set, Map) (0) | 2021.01.14 |
[kotlin] Functions 함수 (0) | 2021.01.13 |
[kotlin] loop (반복문) for, while, do while (0) | 2020.12.30 |
[kotlin] 조건문 (if, when), 엘비스(elvis) (0) | 2020.12.28 |
댓글