欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Java8flatMap()合并多个list为一个list

程序员文章站 2022-05-05 08:46:51
...
  1. flatMap()是将函数应用于RDD中的每个元素,将返回的迭代器的所有内容构成新的RDD,这样就得到了一个由各列表中的元素组成的RDD,而不是一个列表组成的RDD。(将几个小list合并到一个list中)
    // 例一
    List<Integer> list = ImmutableList.of(1, 3, 5);
    list = list.stream().flatMap(l -> {
        List<Integer> list1 = new ArrayList<>();
        list1.add(l + 1);
        list1.add(l + 2);
        return list1.stream();
    }).collect(Collectors.toList());
    System.out.println(list);// [2, 3, 4, 5, 6, 7]
    
    // 例二
    List<List<Map<String,Object>>> lists = ImmutableList.of(
                    ImmutableList.of(
                            ImmutableMap.of("a", 1, "b", 2), ImmutableMap.of("a", 2, "b", 3)
                    ),
                    ImmutableList.of(
                            ImmutableMap.of("a", 3, "b", 4), ImmutableMap.of("a", 4, "b", 5)
                    ),
                    ImmutableList.of(
                            ImmutableMap.of("a", 5, "b", 6), ImmutableMap.of("a", 6, "b", 7)
                    )
            );
    // 将多个list合并为一个list
    List<Map<String,Object>> list = lists.stream().flatMap(Collection::stream).collect(Collectors.toList());// [{a=1, b=2}, {a=2, b=3}, {a=3, b=4}, {a=4, b=5}, {a=5, b=6}, {a=6, b=7}]