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 | 31 |
Tags
- androidStudio
- Hilt
- 백준
- android
- Compose
- livedata
- Codeforces
- AWS
- GitHub
- 프로그래머스
- MyVoca
- MiTweet
- textfield
- 쿠링
- relay
- activity
- 코루틴
- 코드포스
- Coroutine
- 암호학
- Rxjava
- TEST
- ProGuard
- Kotlin
- architecture
- pandas
- boj
- Coroutines
- Python
- Gradle
Archives
- Today
- Total
이동식 저장소
[Kotlin] for? forEach? 본문
일반적인 for문과 ``Collections<T>.forEach()`` 중 뭘 써야 하나요?
JetBrains의 Kotlin 개발자들이 쓴 Kotlin in Action에 이런 구절이 있다.
The forEach function is somewhat more concise than a regular for loop, but it doesn’t have many other advantages, so you needn’t rush to convert all your loops to lambdas.
요약하면 ``forEach``가 읽기 쉬운 건 맞지만, for문을 모두 바꿔야 할 만큼 명확한 이점이 있는 것은 아니라고 한다. 각자 편한 걸 쓰는 걸로.
'Primary > Kotlin' 카테고리의 다른 글
[Kotlin] 제네릭 타입 제한하기 (0) | 2022.06.10 |
---|---|
[Kotlin] &&와 and의 차이 (0) | 2022.06.03 |
[Kotlin] sealed class (0) | 2022.05.20 |
[Kotlin] Nested Class, Inner Class (0) | 2022.05.19 |
[Kotlin] abstract class (0) | 2022.05.18 |
Comments