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
- Codeforces
- MiTweet
- 쿠링
- androidStudio
- Rxjava
- Python
- boj
- android
- 코드포스
- Compose
- textfield
- ProGuard
- AWS
- relay
- TEST
- architecture
- Hilt
- Coroutine
- activity
- 프로그래머스
- 코루틴
- Coroutines
- MyVoca
- GitHub
- Kotlin
- Gradle
- livedata
- pandas
- 백준
- 암호학
Archives
- Today
- Total
이동식 저장소
mutableMapOf()의 내부 구현 본문
Kotlin의 ``mutableMapOf()`` 함수는 내부적으로 ``LinkedHashMap()``을 반환한다.
/**
* Returns an empty new [MutableMap].
*
* The returned map preserves the entry iteration order.
* @sample samples.collections.Maps.Instantiation.emptyMutableMap
*/
@SinceKotlin("1.1")
@kotlin.internal.InlineOnly
public inline fun <K, V> mutableMapOf(): MutableMap<K, V> = LinkedHashMap()
Kotlin ``LinkedHashMap``은 Java의 ``LinkedHashMap``으로 ``typealias``되어 있다. 이제 Java의 ``LinkedHashMap`` 구현을 살펴보자.
@SinceKotlin("1.1")
public actual typealias LinkedHashMap<K, V> = java.util.LinkedHashMap<K, V>
Java LinkedHashMap
Java의 ``LinkedHashMap``은 ``HashMap``과 유사하다. 따라서 삽입, 탐색, 삭제 모두 로그 시간이 걸린다.
그러나 원소의 순회 순서가 일정하지 않은 ``HashMap``과 달리, 내부적으로 링크드리스트를 활용하여 원소를 삽입 순서대로 순회할 수 있다. 지금까지 ``mutableMapOf()``로 얻은 ``MutableMap``의 순회 순서가 predictable한 것도 모두 ``LinkedHashMap`` 구현체를 사용했기 때문이었다.
참고
'Primary > Kotlin' 카테고리의 다른 글
kapt를 KSP로 migrate하기 (0) | 2024.06.08 |
---|---|
Kotlin 2.0.0 출시 (0) | 2024.06.08 |
[Kotlin] Coroutines Job (0) | 2022.11.10 |
[Kotlin] Dispatcher (0) | 2022.11.08 |
[Kotlin] Computed Property (0) | 2022.10.06 |
Comments