gpt4 book ai didi

kotlin - 如何使用 Kotlin 中的多个比较字段按降序排序

转载 作者:IT老高 更新时间:2023-10-28 13:32:03 31 4
gpt4 key购买 nike

Kotlin 允许我使用多个比较字段对 ASC 和数组进行排序。

例如:

return ArrayList(originalItems)
.sortedWith(compareBy({ it.localHits }, { it.title }))

但是当我尝试排序 DESC (compareByDescending()) 时,它不允许我使用多个比较字段。

有什么办法可以做到吗?

最佳答案

您可以使用 thenByDescending() (或 thenBy() 用于升序)扩展函数来定义辅助 Comparator .

假设 originalItems属于 SomeCustomObject ,这样的事情应该可以工作:

return ArrayList(originalItems)
.sortedWith(compareByDescending<SomeCustomObject> { it.localHits }
.thenByDescending { it.title })

(当然,您必须将 SomeCustomObject 替换为您自己的泛型类型)

关于kotlin - 如何使用 Kotlin 中的多个比较字段按降序排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49612712/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com