• 两个list中实体某个属性值相同的实体和不同的实体


    说明

    有两个list,分别是newList 和 oldList,快速取出两个 newList 中某个属性值相同的实体和不同的实体

    代码

    import lombok.Data;
    import lombok.ToString;
    
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Objects;
    import java.util.stream.Collectors;
    
    public class Main {
    
        /**
         *
         * @param args
         */
        public static void main(String[] args) {
          List<Segment> newList =  new ArrayList<Segment>();
            Segment newO1 = new Segment();
            newO1.setCouponNum("1");
            newO1.setArrAirportCode("北京");
            newO1.setDepAirportCode("山西");
            newList.add(newO1);
    
            Segment newO12 = new Segment();
            newO12.setCouponNum("2");
            newO12.setArrAirportCode("北京2");
            newO12.setDepAirportCode("山西2");
            newList.add(newO12);
    
            Segment newO13 = new Segment();
            newO13.setCouponNum("3");
            newO13.setArrAirportCode("北京2");
            newO13.setDepAirportCode("山西2");
            newList.add(newO13);
    
            List<Segment> oldList =  new ArrayList<Segment>();
            Segment oldO1 = new Segment();
            oldO1.setCouponNum("1");
            oldO1.setArrAirportCode("北京");
            oldO1.setDepAirportCode("山西");
            oldList.add(newO1);
    
            Segment oldO12 = new Segment();
            oldO12.setCouponNum("2");
            oldO12.setArrAirportCode("北京2");
            oldO12.setDepAirportCode("山西2");
            oldList.add(oldO12);
    
            Segment oldO13 = new Segment();
            oldO13.setCouponNum("4");
            oldO13.setArrAirportCode("北京2");
            oldO13.setDepAirportCode("山西2");
            oldList.add(oldO13);
    
            //过滤出需要插入的数据,这里就是过滤多个不相同字段
            List<Segment> collectOne = newList.stream().filter(newSeg -> {
                for (Segment oldSeg : oldList) {
                    if (newSeg.getCouponNum().equals(oldSeg.getCouponNum())) {
                        return false;
                    }
                }
                return true;
            }).collect(Collectors.toList());
            //collect中就是需要插入的数据
            System.out.println("newList中 couponNum 不相同的数据 = " + collectOne);
    
            //过滤出需要插入的数据,这里就是过滤多个不相同字段
            List<Segment> collectTwo = newList.stream().filter(newSeg -> {
                for (Segment oldSeg : oldList) {
                    if (Objects.equals(newSeg.getCouponNum(),oldSeg.getCouponNum())) {
                        return true;
                    }
                }
                return false;
            }).collect(Collectors.toList());
            //collect中就是需要插入的数据
            System.out.println("newList中 couponNum 相同的数据 = " + collectTwo);
            
        }
    }
    
    @ToString
    @Data
    class Segment {
        /** Coupon号 */
        private String couponNum;
        /** 起飞机场编码 */
        private String depAirportCode;
        /** 降落机场编码 */
        private String arrAirportCode;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90

    运行结果

    newList中 couponNum 不相同的数据 = [
    Segment(couponNum=3, depAirportCode=山西2, arrAirportCode=北京2)
    ]
    
    newList中 couponNum 相同的数据 = [
    Segment(couponNum=1, depAirportCode=山西, arrAirportCode=北京), 
    Segment(couponNum=2, depAirportCode=山西2, arrAirportCode=北京2)
    ]
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
  • 相关阅读:
    【SpringCloud-学习笔记】Eureka注册中心
    vue中使用接口(搜狐接口)获取访客IP地址
    CopyOnWrite 容器
    Chainlink 预言机的原理解析
    如何在雷电模拟器上安装Magisk并加载movecert模块抓https包(一)
    关于promethus+grafana的监控exporter访问/为errorpage404(notfound)重写exporter
    【多目标优化求解】基于matlab非支配排序灰狼优化(NS-GWO)算法求解多目标优化问题【含Matlab源码 2015期】
    HX3001升压IC芯片-Synchronous Boost DC/DC Regulator
    SimpleDateFormat 线程安全问题修复方案
    JS实现异步的方法
  • 原文地址:https://blog.csdn.net/weixin_46237429/article/details/134010530