两个Map的合并操作

时间:2025-01-13 11:10:13

两个map进行合并有多种方式实现,以下列举出几种常见的合并方式:

方式1:使用map的merge()方法进行合并

merge()  函数的作用是: 如果给定的key之前没设置value 或者value为null, 则将给定的value关联到这个key上.否则,通过给定的remaping函数计算的结果来替换其value。如果remapping函数的计算结果为null,将解除此结果。

就是,把一个map循环合并到另一个map 例如:

((k, v) -> (k, v, (v1, v2) -> v2));

map2的结果是map2和map的lambda结果集,而map则还是原来的map

 merge(param1,param2,param3) : 第一个参数为要合并的key,第二个参数为要合并的value,第三个参数接收两个参数的函数,用来处理重复的 key值出现的处理逻辑,(v1,v2) -> v1)表示使用map1的value值,(v1,v2) -> v2)表示使用map2的value值 

public static void main(String[] args) {
        HashMap<String, String> specialPrice = new HashMap<>();
        ("1", "1");
        ("2", "2");
        ("3", "3");
        HashMap<String, String> collect = new HashMap<>();
        ("4", "4");
        ("3", "5");
        ("6", "6");
        ((k, v) -> (k, v, (v1, v2) -> v2));

        for (<String, String> stringStringEntry : ()) {
            (() + "===>" + ());
        }
    }

输出结果

1===>1
2===>2
3===>5
4===>4
6===>6

方式2: 使用Stream.concat进行合并

public class MergeTwoMaps2 {
    public static void main(String[] args) {
        Map<Integer,Integer> map1 = new HashMap<>();
        (1,1);
        (2,2);
        (3,3);
        (4,4);

        Map<Integer,Integer> map2 = new HashMap<>();
        (1,0);
        (5,5);
        (6,6);

        //将map1和map2收集成一个流
        Stream<<Integer, Integer>> concat = (().stream(), ().stream());
        //然后将其收集成一个新的map
        Map<Integer, Integer> map = ((::getKey, ::getValue, (v1, v2) -> v2));
        ((key,value) -> {
            (key + ": " + value);
        });
    }
}

输出结果:

1: 0
2: 2
3: 3
4: 4
5: 5
6: 6

方式3:使用进行合并

public class MergeTwoMaps3 {
    public static void main(String[] args) {
        Map<Integer,Integer> map1 = new HashMap<>();
        (1,1);
        (2,2);
        (3,3);
        (4,4);

        Map<Integer,Integer> map2 = new HashMap<>();
        (1,0);
        (5,5);
        (6,6);

        //注意: 和contact不同的是可以初始化多个元素,然后用扁平化的处理成需要的流,然后用收集器来转为Map
        Stream<Map<Integer, Integer>> stream = (map1, map2);
        Map<Integer, Integer> map = (m -> ().stream())
                .collect((::getKey, ::getValue, (v1, v2) -> v1));
        ((key,value) -> {
            (key + ": " + value);
        });
    }
}

输出结果:

1: 1
2: 2
3: 3
4: 4
5: 5
6: 6

方式4:直接使用Steam的Collector进行收集合并

public class MergeTwoMaps4 {
    public static void main(String[] args) {
        Map<Integer,Integer> map1 = new HashMap<>();
        (1,1);
        (2,2);
        (3,3);
        (4,4);

        Map<Integer,Integer> map2 = new HashMap<>();
        (1,0);
        (5,5);
        (6,6);

        //方式4:直接使用Collector进行收集
        HashMap<Integer, Integer> map = ().stream()
                .collect((::getKey, ::getValue, (v1, v2) -> v2, () -> new HashMap<>(map1)));
        ((key,value) -> {
            (key + ": " + value);
        });
    }
}

输出结果:

1: 0
2: 2
3: 3
4: 4
5: 5
6: 6

相关文章