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

用法:

infix fun <T> Comparator<T>.then(
    comparator: Comparator<in T>
): Comparator<T>

将此比较器与给定的comparator 结合起来,以便仅当前者认为值相等时才应用后者。

例子:

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val list = listOf("A", "aa", "b", "bb", "a")

val lengthThenCaseInsensitive = compareBy<String> { it.length }
    .then(String.CASE_INSENSITIVE_ORDER)

val sorted = list.sortedWith(lengthThenCaseInsensitive)

println(sorted) // [A, a, b, aa, bb]
//sampleEnd
}

输出:

[A, a, b, aa, bb]