gpt4 book ai didi

java - Cumulative Sum 多个对象属性 Stream

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

我有一个按月-年字符串属性排序的对象列表。我的对象类定义看起来像

Public class Obj{
String year;
Long membercount;
Long nonmembercount;
Double memberpayment;
Double nonmemberpayment;
}

new Obj("9-2015",100,20,10,5)
new Obj("10-2015",220,40,20,55)
new Obj("11-2015",300,60,30,45)
new Obj("12-2015",330,30,50,6)
new Obj("1-2016",100,10,10,4)

我想对 membercountnonmembercountmemberpaymentnonmemberpayment 进行累计

所以我的新对象列表如下所示

new Obj("9-2015",100,20,10,5)
new Obj("10-2015",320,60,30,60)
new Obj("11-2015",620,120,60,105)
new Obj("12-2015",950,150,110,111)
new Obj("1-2016",1050,160,120,115)

我尝试使用 Collectors.summingDouble 但它给了我所有的总和,而不是累积的。

非常感谢任何指点。

最佳答案

在 Stream API 中没有对累积操作的直接支持,尽管可以通过自定义 Collector 实现这样的操作。但值得注意的是,已经直接支持对数组进行此类操作,这可能足以满足您的情况:

Obj 的草图扩展到

public class Obj {
String year;
Long membercount;
Long nonmembercount;
Double memberpayment;
Double nonmemberpayment;

public Obj(String year, long membercount, long nonmembercount,
double memberpayment, double nonmemberpayment) {
this.year = year;
this.membercount = membercount;
this.nonmembercount = nonmembercount;
this.memberpayment = memberpayment;
this.nonmemberpayment = nonmemberpayment;
}

@Override
public String toString() {
return "Obj("+year+", "+membercount+", "+nonmembercount
+", "+memberpayment+", "+nonmemberpayment+')';
}
}

解决方案可能如下所示:

// test data
List<Obj> list=Arrays.asList(
new Obj("9-2015", 100, 20, 10, 5),
new Obj("10-2015", 220, 40, 20, 55),
new Obj("11-2015", 300, 60, 30, 45),
new Obj("12-2015", 330, 30, 50, 6),
new Obj("1-2016", 100, 10, 10, 4));

// creating an array as need for the operation, it will contain the
// result afterwards, whereas the source list is not modified
Obj[] array = list.toArray(new Obj[0]);

// the actual operation
Arrays.parallelPrefix(array, (a,b) -> new Obj(b.year,
a.membercount + b.membercount,
a.nonmembercount + b.nonmembercount,
a.memberpayment + b.memberpayment,
a.nonmemberpayment + b.nonmemberpayment
));

// just print the result
Arrays.asList(array).forEach(System.out::println);

打印最后一行

Obj(9-2015, 100, 20, 10.0, 5.0)
Obj(10-2015, 320, 60, 30.0, 60.0)
Obj(11-2015, 620, 120, 60.0, 105.0)
Obj(12-2015, 950, 150, 110.0, 111.0)
Obj(1-2016, 1050, 160, 120.0, 115.0)

虽然此操作不太可能受益于对少量元素的并行处理,但遗憾的是没有此操作的顺序版本。所以你可能会考虑使用普通的循环解决方案......


为了完整起见,这里有一个基于流收集器的累积操作解决方案。与 Arrays.parallelPrefix 一样,更新函数必须无副作用且具有关联性,返回具有汇总属性的新对象的函数就是这种情况。

public static <T> Collector<T,?,List<T>> cumulative(BinaryOperator<T> update) {
return Collector.of(ArrayList::new,
(l,o) -> {
if(!l.isEmpty()) o=update.apply(l.get(l.size()-1), o);
l.add(o);
},
(l,m) -> {
if(l.isEmpty()) return m;
if(!m.isEmpty()) {
T a = l.get(l.size()-1);
for(T b: m) l.add(update.apply(a, b));
}
return l;
});
}

按照上面的设置使用它:

List<Obj> result = list.stream().collect(cumulative((a,b) -> new Obj(b.year,
a.membercount + b.membercount,
a.nonmembercount + b.nonmembercount,
a.memberpayment + b.memberpayment,
a.nonmemberpayment + b.nonmemberpayment
)));

关于java - Cumulative Sum 多个对象属性 Stream,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42130908/

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