将List中相同属性的元素提取出来,组合成新的List

编程入门 行业动态 更新时间:2024-10-25 05:18:20

将List中相同属性的元素提取出来,<a href=https://www.elefans.com/category/jswz/34/1769978.html style=组合成新的List"/>

将List中相同属性的元素提取出来,组合成新的List

class Bean{private String name;private String course;private Integer score;//constructor//getter//setter
}public static void main(String[] args) {List<Bean> list = new ArrayList<>();list.add(new Bean("张三","数学",100));list.add(new Bean("张三","语文",100));list.add(new Bean("李四","数学",59));list.add(new Bean("李四","语文",59));Set<String> nameSet= new HashSet<>();for (Bean item : list) {nameSet.add(item.getName());}List<Bean> tempList;for (String name: nameSet) {tempList = new ArrayList<>();for (Bean item : list) {if (name.equals(item.getName())) {tempList.add(item);}}}}

更多推荐

将List中相同属性的元素提取出来,组合成新的List

本文发布于:2024-03-12 05:14:41,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1730772.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:组合   成新   属性   元素   List

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!