java sortedlist 用法_Java8-使用对List和Map排序

时间:2025-04-04 07:22:50

前提

java8中,Comparator()是一个函数式接口,可以使用Lambda表达式实现;

Streamsorted(Comparator super T> comparator);

vo

@Data

@AllArgsConstructor

public class DailyDataChartVo {

/**

* 日期

*/

private LocalDate date;

/**

* 今日营收

*/

private BigDecimal revenue;

}

List排序

按日期排序

List list = ()

.sorted((DailyDataChartVo::getDate))

.collect(());

按日期排序后,逆序

List list = ()

.sorted((DailyDataChartVo::getDate).reversed())

.collect(());

按日期排序后,再按金额排序

List list = ()

.sorted((DailyDataChartVo::getDate)

.thenComparing(DailyDataChartVo::getRevenue))

.collect(());

按金额排序,排序时过滤Null值(如果排序的字段为null,NPE)

List list = ()

.filter(c -> (()))

.sorted((DailyDataChartVo::getRevenue))

.collect(());

按金额排序,Null值排在最前面

List list = ()

.sorted((DailyDataChartVo::getRevenue,

(BigDecimal::compareTo)))

.collect(());

//注意的方法引用中,比较的字段是BigDecimal类型的,如果前后类型不一致,会报错:Non-static method cannot be referenced from a static context

按金额排序,Null值排在最后面

List list = ()

.sorted((DailyDataChartVo::getRevenue,

(BigDecimal::compareTo)))

.collect(());

Map排序

按key排序

Map map = ()

.stream()

.sorted(())

.collect((::getKey, ::getValue, (c1, c2) -> c1, LinkedHashMap::new));

将map转换成流,在流中对元素进行排序,排序后,再用LinkedHashMap收集来保留顺序

public static , V> Comparator> comparingByKey() {

return (Comparator> & Serializable)

(c1, c2) -> ().compareTo(());

}

():对任意的c1, c2进行比较,然后将结果强制转换成一个可序列化的Comparator>

()基础

按key排序后,逆序

Map map = ()

.stream()

.sorted((()))

.collect((::getKey, ::getValue, (c1, c2) -> c1, LinkedHashMap::new));

按value排序

Map map = ()

.stream()

.sorted(())

.collect((::getKey, ::getValue, (c1, c2) -> c1, LinkedHashMap::new));