在变量“ a”中,我创建一个double
数组,在变量“ maxA”中,我获得了这些值的总和。现在在变量“ b”中,我创建一个具有双精度值的对象数组,现在我想使用stream
值获取这些值的总和。感谢帮助
double[] a = new double[] {3.0,1.0};
double maxA = Arrays.stream(a).sum();
ObjectWithDoubleValue o1 = new ObjectWithDoubleValue (3.0);
ObjectWithDoubleValue o2 = new ObjectWithDoubleValue (1.0);
ObjectArray[] b = {o1 , o2};
double maxB = ?;
最佳答案
使用mapToDouble
将返回DoubleStream
并使用类的getter
函数从对象中获取值并最终应用sum
Arrays.stream(aa).mapToDouble(ObjectWithDoubleValue::getValue).sum()
其中
getValue
是您课程的getter
函数class ObjectWithDoubleValue{
double a;
public double getValue(){
return a;
}
}
样品
ObjectWithDoubleValue a1= new ObjectWithDoubleValue();
a1.a=3.0;
ObjectWithDoubleValue a2= new ObjectWithDoubleValue();
a2.a=3.0;
ObjectWithDoubleValue[] aa={a1,a2};
System.out.println(Arrays.stream(aa).mapToDouble(ObjectWithDoubleValue::getValue).sum());
输出:
6.0