associateBy所在位置是kotlin.sequences.associateBy,其相关用法介绍如下。

用法一

inline fun <T, K> Sequence<T>.associateBy(
    keySelector: (T) -> K
): Map<K, T>

返回一个Map,其中包含给定序列中的元素,该序列由应用于每个元素的keySelector 函数返回的键索引。

如果任意两个元素具有由keySelector 返回的相同键,则将最后一个元素添加到Map中。

返回的映射保留原始序列的条目迭代顺序。

操作是 terminal

例子:

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
data class Person(val firstName: String, val lastName: String) {
    override fun toString(): String = "$firstName $lastName"
}

val scientists = listOf(Person("Grace", "Hopper"), Person("Jacob", "Bernoulli"), Person("Johann", "Bernoulli"))

val byLastName = scientists.associateBy { it.lastName }

// Jacob Bernoulli does not occur in the map because only the last pair with the same key gets added
println(byLastName) // {Hopper=Grace Hopper, Bernoulli=Johann Bernoulli}
//sampleEnd
}

输出:

{Hopper=Grace Hopper, Bernoulli=Johann Bernoulli}

用法二

inline fun <T, K, V> Sequence<T>.associateBy(
    keySelector: (T) -> K, 
    valueTransform: (T) -> V
): Map<K, V>

返回一个 Map,其中包含由 valueTransform 提供的值,并由应用于给定序列元素的 keySelector 函数索引。

如果任意两个元素具有由keySelector 返回的相同键,则将最后一个元素添加到Map中。

返回的映射保留原始序列的条目迭代顺序。

操作是 terminal

例子:

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
data class Person(val firstName: String, val lastName: String)

val scientists = listOf(Person("Grace", "Hopper"), Person("Jacob", "Bernoulli"), Person("Johann", "Bernoulli"))

val byLastName = scientists.associateBy({ it.lastName }, { it.firstName })

// Jacob Bernoulli does not occur in the map because only the last pair with the same key gets added
println(byLastName) // {Hopper=Grace, Bernoulli=Johann}
//sampleEnd
}

输出:

{Hopper=Grace, Bernoulli=Johann}