【弄nèng - 化繁为简】Java8 List<Object>转Map<Integer,List< Object >>

【弄nèng - 化繁为简】Java8 List<Object>转Map<Integer,List< Object >>,第1张

【弄nèng - 化繁为简】Java8 List<Object>转Map<Integer,List< Object >>

文章目录
    • 一. Collectors.toMap
    • 二. 事例
    • 三. List转Map

一. Collectors.toMap

看看源码

    public static 
    Collector> toMap(Function keyMapper,
                                    Function valueMapper,
                                    BinaryOperator mergeFunction) {
        return toMap(keyMapper, valueMapper, mergeFunction, HashMap::new);
    }

有三个参数,还有个默认参数
参数含义:

- keyMapper:Key 的映射函数
   
- valueMapper:Value 的映射函数
   
- mergeFunction:当 Key 冲突时,调用的处理方法
   
- mapSupplier:Map 构造器,在需要返回特定的 Map 时使用
二. 事例

输入

	public static void main(String[] args) {
        List testList = Lists.newArrayList(
                new TestEntity().setId(1).setName("张三"),
                new TestEntity().setId(1).setName("李四"), // Key 相同
                new TestEntity().setId(2).setName("王五")
        );

        Map map = testList.stream()
                .collect(Collectors.toMap(TestEntity::getId, TestEntity::getName, (n1, n2) -> n1 + n2));
        System.out.println("map:" + map);
    }

输出

三. List转Map>

输入

    public static void main(String[] args) {
        List testList = Lists.newArrayList(
                new TestEntity().setId(1).setName("张三"),
                new TestEntity().setId(1).setName("李四"), // Key 相同
                new TestEntity().setId(2).setName("王五")
        );

        Map map = testList.stream()
                .collect(Collectors.toMap(TestEntity::getId, TestEntity::getName, (n1, n2) -> n1 + n2));
        System.out.println("map:" + map);

        Map> mapList = testList.stream()
                .collect(Collectors.toMap(TestEntity::getId, item -> {
                    List list = Lists.newArrayList();
                    list.add(item);
                    return list;
                }, (n1, n2) -> {
                    n1.addAll(n2);
                    return n1;
                }));
        System.out.println("map:" + mapList);
    }

输出

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5612413.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)