在变量“ 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

10-08 19:32