Kotlin 지도 컬렉션 – map() 메서드
3422 단어 mapcollectionkotlin
Kotlin 지도 컬렉션 – map() 메서드
튜토리얼에서 JavaSampleApproach은
map()
메서드를 사용하여 Kotlin Map 컬렉션을 Kotlin List 컬렉션 또는 새 Map 컬렉션으로 변환하는 방법을 보여줍니다.I. map() 메서드를 사용한 Kotlin 지도 컬렉션
Kotlin Map 컬렉션은 주어진 지도를 새 지도 또는 새 목록으로 변환하는 map() 메서드 세트를 지원합니다.
1. fun <K, V, R> Map<out K, V>.map(transform: (Map.Entry<K, V>) -> R): List<R>
2. fun <K, V, R : Any> Map<out K, V>.mapNotNull(transform: (Map.Entry<K, V>) -> R?): List<R>
3. fun <K, V, R, C : MutableCollection<in R>> Map<out K, V>.mapTo(destination: C, transform: (Map.Entry<K, V>) -> R): C
4. fun <K, V, R : Any, C : MutableCollection<in R>> Map<out K, V>.mapNotNullTo(destination: C, transform: (Map.Entry<K, V>) -> R?): C
5. fun <K, V, R> Map<out K, V>.mapKeys(transform: (Map.Entry<K, V>) -> R): Map<R, V>
6. fun <K, V, R> Map<out K, V>.mapKeys(transform: (Map.Entry<K, V>) -> R): Map<R, V>
7. fun <K, V, R> Map<out K, V>.mapValues(transform: (Map.Entry<K, V>) -> R): Map<K, R>
8. fun <K, V, R, M : MutableMap<in K, in R>> Map<out K, V>.mapValuesTo(destination: M, transform: (Map.Entry<K, V>) -> R): M
지금 연습중 ->
0. 실습을 위한 초기 데이터
data class Address(
val street: String,
val postcode: String
)
data class Customer(
val firstName: String,
val lastName: String,
val age: Int
)
data class Person(
val fullname: String,
val age: Int,
val address: Address
)
val customerMap = mapOf(Pair(Customer("Jack", "Davis", 25), Address("NANTERRE CT", "77471")),
Pair(Customer("Mary", "Taylor", 37), Address("W NORMA ST", "77009")),
Pair(Customer("Peter", "Thomas",17), Address("S NUGENT AVE", "77571")),
Pair(Customer("Amos", "Nelson",23), Address("E NAVAHO TRL", "77449")),
Pair(Customer("Craig", "White",45), Address("AVE N", "77587")),
Pair(Customer("Laura", "Lewis", 32), Address("NANTERRE CT", "77471")),
Pair(Customer("Steven", "Harris", 39), Address("S NUGENT AVE", "77571")),
Pair(Customer("Paul", "Moore", 18), Address("E NAVAHO TRL", "77449")),
Pair(Customer("Mary", "Cook", 61), Address("S NUGENT AVE", "77571")),
Pair(null, null))
1. 주어진 Kotlin 지도를 목록으로 변환
1.1 지도()
메서드 서명:
더 보기:
https://grokonez.com/kotlin/kotlin-map-collection-map-methods
Kotlin 지도 컬렉션 – map() 메서드
Reference
이 문제에 관하여(Kotlin 지도 컬렉션 – map() 메서드), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/loizenai/kotlin-map-collection-map-methods-41je텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)