반응형
컬렉션 타입의 인덱스값 이용
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
반응형
'Android' 카테고리의 다른 글
Android Release 모드에서 Log 보기 (0) | 2022.10.12 |
---|---|
Android filesDir.path 폴더 안에 하위 목록까지 삭제하기 (0) | 2022.09.27 |
Foreground Service 사용해보기 (0) | 2022.08.10 |
Fatal Exception: android.content.ActivityNotFoundException 예외처리 (0) | 2022.06.28 |
Android Retrofit2을 이용한 로그인 example (0) | 2022.06.16 |
댓글