java8 list 转 map

Posted GSLCN

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java8 list 转 map相关的知识,希望对你有一定的参考价值。

List<NodeRoleRelationListVo> nodeRoleList = nodeRoleRelationFeign.selectList(new NodeRoleRelationReqVo()).getData();
//Stream将List转换为Map,使用Collectors.toMap方法进行转换


//1、指定key-value,value是对象中的某个属性值。
Map<String,String> nodeRoleMap = nodeRoleList.stream().collect(Collectors.toMap(NodeRoleRelationListVo::getNodeCode,NodeRoleRelationListVo::getRoleCode));


//2、指定key-value,value是对象本身,User->User 是一个返回本身的lambda表达式
nodeRoleList.stream().collect(Collectors.toMap(NodeRoleRelationListVo::getNodeCode,NodeRoleRelationListVo->NodeRoleRelationListVo));


//3、指定key-value,value是对象本身,Function.identity()是简洁写法,也是返回对象本身
nodeRoleList.stream().collect(Collectors.toMap(NodeRoleRelationListVo::getNodeCode, Function.identity()));


//4、指定key-value,value是对象本身,Function.identity()是简洁写法,也是返回对象本身,key 冲突的解决办法,这里选择第二个key覆盖第一个key。
nodeRoleList.stream().collect(Collectors.toMap(NodeRoleRelationListVo::getNodeCode, Function.identity(),(key1,key2)->key2));


以上是关于java8 list 转 map的主要内容,如果未能解决你的问题,请参考以下文章

java8 list 转 map

Java8中list转map

java8-list转Map

java8-list转Map

Java8新特性Stream之list转map及问题解决

java8快速实现分组过滤list转map