본문 바로가기
kotlin/문법

[kotlin] arrays 배열

by 코드 이야기 2021. 1. 14.
728x90

 

kotlinlang.org/docs/reference/basic-types.html#arrays

 

Basic Types: Numbers, Strings, Arrays - Kotlin Programming Language

 

kotlinlang.org

 

 

 

 

배열 생성 방법 

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

 

[kotlin] collection (List, Set, Map)

C/C++ 언어밖에 모르는 한 인간의 코틀린 도전일기 kotlinlang.org/docs/reference/collections-overview.html Collections Overview - Kotlin Programming Language kotlinlang.org 우선, list, set, map세 녀석..

korean-otter.tistory.com

 

 

 

 

 

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

댓글