因此,当我在Kotlin进行游戏项目时,我想为什么Kotlin会有如此众多的收藏?像list
,set
等一样非常令人困惑。我的意思是list
,mutableList
和hashMap
足够好。在Python中,只有list
,tuple
和dictionary
(hashMap
)。我想知道每个集合的用处和用途,因为我想在开始编程之前就知道所有类型。顺便说一下,我来自Python。
答案 0 :(得分:0)
您可以检查this post以获得有关Java集合类的更多信息(由于Kotlin reliant on Java code from the existing Java Class Library)。
有关Kotlin中可变和不可变集合的概念的更多信息,您可以选中official documentation page。