stream常用方法

1.去重

    集合.stream().distinct().collect(Collectors.toList());

2.排序

   正排序

集合 = 集合.stream().sorted(Comparator.comparing(对象::方法)).collect(Collectors.toList());

反排序
集合 = 集合.stream().sorted(Comparator.comparing(对象::方法).reversed()).collect(Collectors.toList());

   

posted @ 2021-09-01 16:58  小窝蜗  阅读(208)  评论(0编辑  收藏  举报