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

java8 list转map

程序员文章站 2022-03-25 11:48:47
...
maps1 = list.stream().collect(Collectors.toMap(t->t.getName(),t->t.getCode(),(t1,t2)->t2));
maps2 = list.stream().collect(Collectors.toMap(t->t.getCode(),t->t.getName(),(t1,t2)->t2));
相关标签: list转map