본문 바로가기
Android

Kotlin for문

by kkong93 2022. 8. 18.
반응형

컬렉션 타입의 인덱스값 이용

val list = listOf("Hello","World","!")
for(i in list.indices){
 println(list[i])
 }

i에는 인덱스 값이 들어감. for( i in 0..2) 와 동일하게 실행

 

결과

Hello
World
!

 

 

 

 

 

컬렉션의 타입의 인덱스와 값 모두 이용

val list = listOf("Hello", "World", "!")
for ((index, value) in list.withIndex()) {
   println("the element at $index is $value")
 }

결과

the element at 0 is Hello
the element at 1 is World
the element at 2 is !

 

 

출처 : 깡샘의 코틀린 프로그래밍 https://kkangsnote.tistory.com/65

반응형

댓글