gpt4 book ai didi

java - 通过 Java-8 中的公共(public)字段减少对象集合

转载 作者:搜寻专家 更新时间:2023-11-01 02:06:02 25 4
gpt4 key购买 nike

我有一个对象列表 Ob 定义为

class Ob {
private String type;
private List<String> attire;
// standard getter and setters

public Ob (String type){
this.type=type;
}

public Ob addAttrire(String att){
if(attire == null){
attire = new ArrayList<>();
}
attire.add(att);
return this;
}
}

我接收对象为

[{
"type" : "upper"
attires : [{"t1","t2"}]
},
{
"type" : "upper"
attires : ["t3","t4"]
},
{
"type" : "lower"
attires : ["l1","l2"]
}]

我必须合并为

[{
"type" : "upper"
attires : ["t1","t2","t3","t4"]
},{
"type" : "lower"
attires : ["l1","l2"]
}]

我如何使用流来做到这一点。减少有帮助吗?可以使用的流是

List<Ob> coll = new ArrayList<>();


coll.add(new Ob("a").addAttrire("1").addAttrire("2").addAttrire("3"));
coll.add(new Ob("a").addAttrire("1").addAttrire("2").addAttrire("3"));
coll.add(new Ob("a").addAttrire("1").addAttrire("2").addAttrire("3"));
coll.add(new Ob("b").addAttrire("1").addAttrire("2").addAttrire("3"));
coll.add(new Ob("b").addAttrire("1").addAttrire("2").addAttrire("3"));
coll.add(new Ob("b").addAttrire("1").addAttrire("2").addAttrire("3"));



Collection<Ob> values = coll.stream()
.collect(toMap(Ob::getType, Function.identity(), (o1, o2) -> {
o1.getAttire().addAll(o2.getAttire());
return o1;
})).values();

用 Ruben 的解决方案更新了问题。不需要删除重复项,但可以使用 Ob 中的 set 来完成。当前的解决方案完美无缺。

最佳答案

您可以使用合并列表的合并函数来收集 toMap

    Collection<Ob> values = coll.stream()
.collect(toMap(Ob::getType, Function.identity(), (o1, o2) -> {
o1.getAttire().addAll(o2.getAttire());
return o1;
})).values();

关于java - 通过 Java-8 中的公共(public)字段减少对象集合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32893360/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com