lambda表达式LinkedHashMap::new和Collectors.mapping讲解

List<Map<Integer, List<Object>>> result = list.stream()
        .collect(Collectors.groupingBy(
                ReviewRecord::getNodeType,
                LinkedHashMap::new,
                Collectors.mapping(
                        Function.identity(),
                        Collectors.toList()
                )
        ))
        .entrySet().stream()
        .collect(Collectors.toMap(
                Map.Entry::getKey,
                e -> e.getValue().stream()
                        .sorted(Comparator.comparing(ReviewRecord::getSequence))
                        .map(record ->
                                (Object) record
                        )
                        .collect(Collectors.toList()),
                (a, b) -> a,
                LinkedHashMap::new
        ))
        .entrySet().stream()
        .sorted(Map.Entry.comparingByKey())
        .collect(Collectors.toList());

在上述代码中,LinkedHashMap::new和Collectors.mapping(Function.identity(), Collectors.toList())都是用于定义groupingBy()方法的参数。

LinkedHashMap::new是一个方法引用,它创建了一个LinkedHashMap对象。在groupingBy()方法中,我们使用它作为第二个参数,以保留分组后的元素顺序。普通的HashMap不保证元素的顺序,而LinkedHashMap会按照插入顺序存储元素。

Collectors.mapping(Function.identity(), Collectors.toList())是一个收集器(Collector)。在groupingBy()方法中,我们使用它作为第三个参数。该收集器可以将元素映射为其他类型,并将结果收集到一个列表中。
    Function.identity()是一个静态方法引用,它表示一个恒等函数,即输入什么就返回什么。在这里,它用于指定映射函数,将元素自身作为映射结果。
    Collectors.toList()是一个收集器,它将映射后的元素收集到一个列表中。

综合起来,Collectors.mapping(Function.identity(), Collectors.toList())的作用是将分组后的元素映射为它们自身,并将结果收集到一个列表中。这样,我们可以将多个具有相同nodeType的ReviewRecord对象分组,并将它们存储在一个列表中。

请注意,Collectors.mapping()方法可以用于对分组后的元素进行更复杂的转换和收集操作。你可以根据具体需求使用不同的函数和收集器来完成映射和收集的逻辑。

你可能感兴趣的:(java)