美文网首页
无标题文章

无标题文章

作者: 那一半橘子 | 来源:发表于2020-03-12 14:37 被阅读0次

    List转成List<String>形式

    List idList = dtoList.stream().map(e -> e.getParentChannelId()).filter(x -> x!=null).collect(Collectors.toList());

    List转成map形式

    Map map = parentDtoList.stream().collect(Collectors.toMap(w -> w.getId(), w -> w.getName()));

    相关文章

      网友评论

          本文标题:无标题文章

          本文链接:https://www.haomeiwen.com/subject/rtemdqtx.html