As far as I can tell, the way to sum a List<Double>
using Java 8 streams is this:
List<Double> vals = . . . ;
double sum = vals.stream().mapToDouble(Double::doubleValue).sum();
To me, the mapToDouble(Double::doubleValue)
seems kind of crufty - just the sort of boilerplate "ceremony" that lambdas and streams were supposed to dispense with.
Best practices tell us to prefer List
instances over arrays, and yet for this sort of summing, arrays seem cleaner:
double[] vals = . . . ;
double sum = Arrays.stream(vals).sum();
Granted, one could do this:
List<Double> vals = . . . ;
double sum = vals.stream().reduce(0.0, (i,j) -> i+j);
But that reduce(....)
is so much longer than sum()
.
I get that this has to do with the way streams need to be retrofitted around the Java's non-object primitives, but still, am I missing something here? Is there some way to squeeze autoboxing in to make this shorter? Or is this just the current state of the art?
Here is a digest of answers below. While I have a summary here, I urge the reader to peruse the answers themselves in full.
@dasblinkenlight explains that some kind of unboxing will always be necessary, due to decisions made further back in the history of Java, specifically in the way generics were implemented and their relationship to the non-object primitives. He notes that it is theoretically possible for the compiler to intuit the unboxing and allow for briefer code, but this has not yet been implemented.
@Holger shows a solution that is very close to the expressiveness I was asking about:
double sum = vals.stream().reduce(0.0, Double::sum);
I was unaware of the new static Double.sum()
method. Added with 1.8, it seems intended for the very purpose I was describing. I also found Double.min()
and Double.max()
. Going forward, I will definitely use this idiom for such operations on List<Double>
and similar.
Is there some way to squeeze autoboxing in to make this shorter?
Yes, there is. You can simply write:
double sum = vals.stream().mapToDouble(d->d).sum();
This makes the unboxing implicit but, of course, does not add to efficiency.
Since the List
is boxed, unboxing is unavoidable. An alternative approach would be:
double sum = vals.stream().reduce(0.0, Double::sum);
It does not do a mapToDouble
but still allows reading the code as “… sum”.