gpt4 book ai didi

android - kotlin Android sortwith 数组问题

转载 作者:太空狗 更新时间:2023-10-29 15:58:33 25 4
gpt4 key购买 nike

我使用下面的 sortwith 方法对我的 ArrayList 进行排序,我想它会将订单号从小到大排序。比如10、9、8、7、6....0。但是结果不是我所期望的。请帮助解决这个问题。

companyList.add(companyReg)
companyList.sortedWith(compareBy { it.order })

for (obj in companyList) {
println("order number: "+obj.order)
}

打印结果 enter image description here

最佳答案

看这个例子:

fun main(args: Array<String>) {
val xx = ArrayList<Int>()
xx.addAll(listOf(8, 3, 1, 4))
xx.sortedWith(compareBy { it })

// prints 8, 3, 1, 4
xx.forEach { println(it) }

println()

val sortedXx = xx.sortedWith(compareBy { it })
// prints sorted collection
sortedXx.forEach { println(it) }
}

为什么会这样?因为在 Kotlin 中,大多数集合都是不可变的。 collection.sortedWith(...) 是一个扩展函数,它返回你的集合的排序副本,但实际上你忽略了这个结果。

当然,您可以使用其他方法修改集合(如 .sort())或 Collections.sort(collection, comparator)。这种排序方式不需要分配新的集合(因为没有新的集合,只修改current)。

关于android - kotlin Android sortwith 数组问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50792534/

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