gpt4 book ai didi

Kotlin:如何展平 HashMap 列表

转载 作者:行者123 更新时间:2023-12-05 08:22:35 26 4
gpt4 key购买 nike

我怎样才能展平 HashMap 的列表?在 Kotlin 中?

var listOfMaps: List<Map<String, String>> = listOf(mapOf("test" to "test1"), mapOf("test2" to "test3"), mapOf("test4" to "test5"))

我想get:Map<String,String>所有键值对

最佳答案

val map:Map<String, String> = listOfMaps
.flatMap { it.entries }
.associate { it.key to it.value }

关于Kotlin:如何展平 HashMap 列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60188961/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com