* until : ~이전까지. 주로 index를 사용하는 코드에서 함께 사용
for (index in 0 until array.size) //array 내의 index 모두 순회
** array 내 index 순회는 아래와 같은 방법이 더 편함
for (index in array) //array 내의 index 모두 순회
*step : n의 배수 등 반복문에서 일정 step에 맞게 loop 수행
for (index in 0 .. 100 step 3)
Log : 0,3,6,9,....99
*downTo : 감소. step도 함께 쓸 수 있음
for (index in 10 downTo 0 step 3)
Log : 10,7,4,1
'Kotlin' 카테고리의 다른 글
[Android, Kotlin] apply, also, let, with, run의 사용 - 범위 지정 함수 (0) | 2021.11.11 |
---|---|
[Kotlin] 상속 변경자 open, abstract 차이 (0) | 2021.11.11 |
[Kotlin] 접근제한자, 제네릭 (0) | 2021.11.11 |
[Kotlin] 함수, 클래스, 추상화, 인터페이스 (0) | 2021.11.11 |
[Kotlin] Array, List, Set, Map (0) | 2021.11.11 |