Stream流数组和对象List排序


一、对象单字段排序

        List<People> peopleList = Lists.newArrayList();
        peopleList.add(new People(1, "小王", 5));
        peopleList.add(new People(1, "小李", 4));
        peopleList.add(new People(2, "小张", 3));
        peopleList.add(new People(2, "小皇", 2));
        peopleList.add(new People(2, "小刘", 1));

        //单字段排序
        peopleList =  peopleList.stream().sorted(Comparator.comparing(People::getJgId)).collect(Collectors.toList());
        log.info(peopleList.toString());
        //这里是根据userId 进行排序——降序排序  reversed()
        peopleList =  peopleList.stream().sorted(Comparator.comparing(People::getJgId).reversed()).collect(Collectors.toList());
        log.info(peopleList.toString());

在这里插入图片描述

二、多字段排序

        List<People> peopleList = Lists.newArrayList();
        peopleList.add(new People(1, "小王", 5));
        peopleList.add(new People(1, "小李", 4));
        peopleList.add(new People(2, "小张", 3));
        peopleList.add(new People(2, "小皇", 2));
        peopleList.add(new People(2, "小刘", 1));
        //这里是根据Id及jgId进行联合升序排序
        peopleList =  peopleList.stream().sorted(Comparator.comparing(People::getId).thenComparing(People::getJgId)).collect(Collectors.toList());
        log.info(peopleList.toString());
        //下面两个结果都是以Id降序jgId升序排序的结果,但是查询方式不同
        //先以id升序,升序结果进行id降序,再进行jgId升序
        peopleList =  peopleList.stream().sorted(Comparator.comparing(People::getId).reversed().thenComparing(People::getJgId)).collect(Collectors.toList());
        log.info(peopleList.toString());
        //先以id降序,再进行jgId升序 **推荐使用该种方式**
        peopleList =  peopleList.stream().sorted(Comparator.comparing(People::getId,Comparator.reverseOrder()).thenComparing(People::getJgId)).collect(Collectors.toList());
        log.info(peopleList.toString());
        //先以id升序,再进行jgId降序
        peopleList =  peopleList.stream().sorted(Comparator.comparing(People::getId).thenComparing(People::getJgId,Comparator.reverseOrder())).collect(Collectors.toList());
        log.info(peopleList.toString());

在这里插入图片描述

三、数组排序以及List<Integer>排序

先把数组转换成List对象再进行排序
在这里插入图片描述

  1. 我不停奔跑只为追赶当年被寄予厚望的自己。
  2. 错的每个题都是为了遇见对的人,对的每道题,都是为了遇见更好的自己。
  3. 低头是题海,抬头是前途。
  4. 我虽摘不下星星,但在我的宇宙里,你已然是我的—片银河系。
  5. 再苦一会儿,未来会很甜!
  6. 生活不可能像你想象得那么好但也不会像你想象得那么糟
  7. 很奇怪,我们不屑与他人为伍,却害怕自己与众不同。
  8. 我要悄无声息,成为你的遥不可及。
  9. 今日长缨在手,何时缚住苍龙。
  10. 真正的秘密不在黑夜之中,也不在巧妙的陷井里,而是藏在人的内心深处。
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

和烨

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值