Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 알림
- LiveData
- 알고리즘
- View
- onMeasure
- Behavior
- 코틀린
- hilt
- room
- Algorithm
- 안드로이드
- Coroutine
- ViewModel
- recyclerview
- 백준
- kotlin
- sqlite
- DataBinding
- onLayout
- notification
- CoordinatorLayout
- BOJ
- CustomView
- AppBarLayout
- Navigation
- activity
- CollapsingToolbarLayout
- lifecycle
- HTTP
- Android
Archives
- Today
- Total
목록while (1)
개발일지
Kotlin in A..Z (12) - for, while, do ~ while
for문 for (변수 in 범위 또는 컬렉션) { 코드 } 변수에 범위 또는 컬렉션의 요소만큼 대입되면서 반복한다. - for 문 in 범위 코드 // i에 1..5가 대입 되면서 반복 for(i in 1..5) { println(i) } 결과 1 2 3 4 5 - for문 in 컬렉션 코드 val arr = arrayOf(1, 2, 3, 100, 900) for(i in arr) { println(i) } 결과 1 2 3 100 900 while문 while(조건) { 코드 } 조건이 만족할 때까지 while문을 반복 코드 var i = 0 while(i < 5) { println(i) i++ } 결과 0 1 2 3 4 do ~ while문 do { 코드 } while(조건) while문은 조건을 검..
Kotlin (코틀린)
2020. 7. 15. 09:47