DoubleAccumulator
Comprehensive guide to working with DoubleAccumulator class.
We'll cover the following...
If you are interviewing, consider buying our number#1 course for Java Multithreading Interviews.
Overview
The DoubleAccumulator
class is similar to the DoubleAdder
class, except that the DoubleAccumulator
class allows for a function to be supplied that contains the logic for computing results for accumulation. In contrast to DoubleAdder
, we can perform a variety of mathematical operations rather than just addition. The supplied function to a DoubleAccumulator
is of type DoubleBinaryOperator
. ...