📜  Kotlin收藏

📅  最后修改于: 2021-01-05 07:40:50             🧑  作者: Mango

Kotlin收藏

Kotlin中的集合用于将一组相关对象存储在一个单元中。通过使用集合,我们可以存储,检索操作和聚合数据。

Kotlin收藏的类型

Kotlin集合大致分为两种不同形式。这些是:

  • 不可变集合(或Collection )
  • 可变集合

不可变集合:

不可变集合(也称为集合)支持只读功能。支持读取功能的不可变集合的方法有:

Collection Types Methods of Immutable Collection
List listOf()
listOf()
Map mapOf()
Set setOf()

可变集合:

可变集合支持读取和写入功能。支持读写功能的可变集合的方法有:

Collection Types Methods of Mutable Collection
List ArrayList()
arrayListOf()
mutableListOf()
Map HashMap
hashMapOf()
mutableMapOf()
Set hashSetOf()
mutableSetOf()