Simple&Natural
for문 조건 본문
728x90
- for(i in 1..100) { … } → 100까지 포함
- for(i in 1 until 100) { … } → 100은 포함하지 않음
- for(x in 2..10 step 2) { … } → 2씩 증가
- for(x in 10 downTo 1) { … } → 숫자 감소
728x90
'언어 > Java&Kotlin' 카테고리의 다른 글
computeIfAbsent() vs putIfAbsent() (0) | 2020.03.20 |
---|---|
코틀린의 캡슐화 (0) | 2020.03.19 |
자바에서 hashcode, identityHashcode, equals, == 연산자의 비교 (0) | 2020.03.16 |
스코프함수 정리 (0) | 2020.02.25 |
꼬리재귀(Tail Recursion) (0) | 2020.01.22 |