当前位置 : 主页 > 编程语言 > java >

pojo集合转map

来源:互联网 收集:自由互联 发布时间:2021-06-28
gistfile1.txt Map remarkMap = remarkList.stream(). collect(Collectors.toMap( FriendshipRemark::getFrAccountId, Function.identity(), (key1, key2) - key2, LinkedHashMap::new)); accountList.stream().forEach(n - { //获取备注名并放入nick中
gistfile1.txt
Map
 
   remarkMap = remarkList.stream().
                    collect(Collectors.toMap(
                            FriendshipRemark::getFrAccountId,
                            Function.identity(),
                            (key1, key2) -> key2, LinkedHashMap::new));

            accountList.stream().forEach(n -> {
                //获取备注名并放入nick中
                n.setNick(remarkMap.get(n.getId()) == null ? "" : remarkMap.get(n.getId()).getRemarkName());
            });
 
网友评论