我有需要按2个参数排序的项目列表,第一个参数是orderIndex,我有那个部分正常工作(参见下面的代码),orderIndex之后的第二个参数是金额。因此,基本上第一项应该是订单索引最低的项目,并且需要按金额进行排序。
result.stream().sorted { s1, s2 -> s1.intervalType.orderIndex.compareTo(s2.intervalType.orderIndex) }.collect(Collectors.toList())
此时我有那个代码,它只是按orderIndex排序,第二个参数金额位于s1.item.amount。
知道如何使用第二个排序参数升级此代码吗?
我找到了这个例子
persons.stream().sorted(Comparator.comparing(Person::getName).thenComparing(Person::getAge));
我的问题是,如何在Person中访问其他对象,例如在我的情况下,我在对象中有IntervalType对象,我需要使用intervalType.orderIndex
注意:
请注意,我需要在Kotlin中使用它而不是Java。
答案 0 :(得分:4)
您可以使用Comparator
使用流
//first comparison
Comparator<YourType> comparator = Comparator.comparing(s -> s.intervalType.orderIndex);
//second comparison
comparator = comparator.thenComparing(Comparator.comparing(s-> s.item.amount));
//sorting using stream
result.stream().sorted(comparator).collect(Collectors.toList())
答案 1 :(得分:2)
我找到了最好的方法,因为我使用Kotlin可以这样做:
result.sortedWith(compareBy({ it.intervalType.orderIndex }, { it.item.amount }))
答案 2 :(得分:0)
如果你是用Kotlin做的 - 你应该用Kotlin方式做。
he Internal
类
class Internal(val orderIndex: Int, val ammount: Int)
您可以使用compareBy
// result: List<Internal>
result.sortedWith(compareBy( {it.orderIndex}, {it.ammount} ))
在你的任务中,没有必要在溪流中,你可以直接做到这一点。
如果您需要确切的流 - 请在流内使用此compareBy
聚合:
result.stream().sorted(compareBy( ... ).collect( ... )