Map 相关操作

map 中,键和值的类型都是用户定义的。 对基于键的访问启用了各种特定于 map 的处理函数,从键获取值到对键和值进行单独过滤。 在此页面上,我们提供了来自标准库的 map 处理功能的描述。

取键与值

要从 Map 中检索值,必须提供其键作为 get() 函数的参数。 还支持简写 [key] 语法。 如果找不到给定的键,则返回 null 。 还有一个函数 getValue() ,它的行为略有不同:如果在 Map 中找不到键,则抛出异常。 此外,还有两个选项可以解决键缺失的问题:

  • getOrElse() 与 list 的工作方式相同:对于不存在的键,其值由给定的 lambda 表达式返回。
  • getOrDefault() 如果找不到键,则返回指定的默认值。
  1. fun main() {
  2. //sampleStart
  3. val numbersMap = mapOf("one" to 1, "two" to 2, "three" to 3)
  4. println(numbersMap.get("one"))
  5. println(numbersMap["one"])
  6. println(numbersMap.getOrDefault("four", 10))
  7. println(numbersMap["five"]) // null
  8. //numbersMap.getValue("six") // exception!
  9. //sampleEnd
  10. }

要对 map 的所有键或所有值执行操作,可以从属性 keysvalues 中相应地检索它们。 keys 是 Map 中所有键的集合, values 是 Map 中所有值的集合。

  1. fun main() {
  2. //sampleStart
  3. val numbersMap = mapOf("one" to 1, "two" to 2, "three" to 3)
  4. println(numbersMap.keys)
  5. println(numbersMap.values)
  6. //sampleEnd
  7. }

过滤

可以使用 filter() 函数来过滤 map 或其他集合。 对 map 使用 filter() 函数时, Pair 将作为参数的谓词传递给它。 它将使用谓词同时过滤其中的键和值。

  1. fun main() {
  2. //sampleStart
  3. val numbersMap = mapOf("key1" to 1, "key2" to 2, "key3" to 3, "key11" to 11)
  4. val filteredMap = numbersMap.filter { (key, value) -> key.endsWith("1") && value > 10}
  5. println(filteredMap)
  6. //sampleEnd
  7. }

还有两种用于过滤 map 的特定函数:按键或按值。 这两种方式,都有对应的函数: filterKeys()filterValues() 。 两者都将返回一个新 Map ,其中包含与给定谓词相匹配的条目。 filterKeys() 的谓词仅检查元素键, filterValues() 的谓词仅检查值。

  1. fun main() {
  2. //sampleStart
  3. val numbersMap = mapOf("key1" to 1, "key2" to 2, "key3" to 3, "key11" to 11)
  4. val filteredKeysMap = numbersMap.filterKeys { it.endsWith("1") }
  5. val filteredValuesMap = numbersMap.filterValues { it < 10 }
  6. println(filteredKeysMap)
  7. println(filteredValuesMap)
  8. //sampleEnd
  9. }

plusminus 操作

由于需要访问元素的键,plus+)与 minus-)运算符对 map 的作用与其他集合不同。 plus 返回包含两个操作数元素的 Map :左侧的 Map 与右侧的 Pair 或另一个 Map 。 当右侧操作数中有左侧 Map 中已存在的键时,该条目将使用右侧的值。

  1. fun main() {
  2. //sampleStart
  3. val numbersMap = mapOf("one" to 1, "two" to 2, "three" to 3)
  4. println(numbersMap + Pair("four", 4))
  5. println(numbersMap + Pair("one", 10))
  6. println(numbersMap + mapOf("five" to 5, "one" to 11))
  7. //sampleEnd
  8. }

minus 将根据左侧 Map 条目创建一个新 Map ,右侧操作数带有键的条目将被剔除。 因此,右侧操作数可以是单个键或键的集合: list 、 set 等。

  1. fun main() {
  2. //sampleStart
  3. val numbersMap = mapOf("one" to 1, "two" to 2, "three" to 3)
  4. println(numbersMap - "one")
  5. println(numbersMap - listOf("two", "four"))
  6. //sampleEnd
  7. }

关于在可变 Map 中使用 plusAssign+=)与 minusAssign-=)运算符的详细信息,请参见 Map 写操作

Map 写操作

Mutable Map (可变 Map )提供特定的 Map 写操作。 这些操作使你可以使用键来访问或更改 Map 值。

Map 写操作的一些规则:

  • 值可以更新。 反过来,键也永远不会改变:添加条目后,键是不变的。
  • 每个键都有一个与之关联的值。也可以添加和删除整个条目。

下面是对可变 Map 中可用写操作的标准库函数的描述。

添加与更新条目

要将新的键值对添加到可变 Map ,请使用 put() 。 将新条目放入 LinkedHashMap (Map的默认实现)后,会添加该条目,以便在 Map 迭代时排在最后。 在 Map 类中,新元素的位置由其键顺序定义。

  1. fun main() {
  2. //sampleStart
  3. val numbersMap = mutableMapOf("one" to 1, "two" to 2)
  4. numbersMap.put("three", 3)
  5. println(numbersMap)
  6. //sampleEnd
  7. }

要一次添加多个条目,请使用 putAll() 。它的参数可以是 Map 或一组 PairIterableSequenceArray

  1. fun main() {
  2. //sampleStart
  3. val numbersMap = mutableMapOf("one" to 1, "two" to 2, "three" to 3)
  4. numbersMap.putAll(setOf("four" to 4, "five" to 5))
  5. println(numbersMap)
  6. //sampleEnd
  7. }

如果给定键已存在于 Map 中,则 put()putAll() 都将覆盖值。 因此,可以使用它们来更新 Map 条目的值。

  1. fun main() {
  2. //sampleStart
  3. val numbersMap = mutableMapOf("one" to 1, "two" to 2)
  4. val previousValue = numbersMap.put("one", 11)
  5. println("value associated with 'one', before: $previousValue, after: ${numbersMap["one"]}")
  6. println(numbersMap)
  7. //sampleEnd
  8. }

还可以使用快速操作符将新条目添加到 Map 。 有两种方式:

  • plusAssign+=) 操作符。
  • [] 操作符为 set() 的别名。
  1. fun main() {
  2. //sampleStart
  3. val numbersMap = mutableMapOf("one" to 1, "two" to 2)
  4. numbersMap["three"] = 3 // 调用 numbersMap.set("three", 3)
  5. numbersMap += mapOf("four" to 4, "five" to 5)
  6. println(numbersMap)
  7. //sampleEnd
  8. }

使用 Map 中存在的键进行操作时,将覆盖相应条目的值。

删除条目

要从可变 Map 中删除条目,请使用 remove() 函数。 调用 remove() 时,可以传递键或整个键值对。 如果同时指定键和值,则仅当键值都匹配时,才会删除此的元素。

  1. fun main() {
  2. //sampleStart
  3. val numbersMap = mutableMapOf("one" to 1, "two" to 2, "three" to 3)
  4. numbersMap.remove("one")
  5. println(numbersMap)
  6. numbersMap.remove("three", 4) //不会删除任何条目
  7. println(numbersMap)
  8. //sampleEnd
  9. }

还可以通过键或值从可变 Map 中删除条目。 在 Map 的 .keys.values 中调用 remove() 并提供键或值来删除条目。 在 .values 中调用时, remove() 仅删除给定值匹配到的的第一个条目。

  1. fun main() {
  2. //sampleStart
  3. val numbersMap = mutableMapOf("one" to 1, "two" to 2, "three" to 3, "threeAgain" to 3)
  4. numbersMap.keys.remove("one")
  5. println(numbersMap)
  6. numbersMap.values.remove(3)
  7. println(numbersMap)
  8. //sampleEnd
  9. }

minusAssign-=) 操作符也可用于可变 Map 。

  1. fun main() {
  2. //sampleStart
  3. val numbersMap = mutableMapOf("one" to 1, "two" to 2, "three" to 3)
  4. numbersMap -= "two"
  5. println(numbersMap)
  6. numbersMap -= "five" //不会删除任何条目
  7. println(numbersMap)
  8. //sampleEnd
  9. }