The java.LongAccumulator.getThenReset() is an inbuilt method in java that is equivalent in effect to get() followed by reset(). Firstly, it gets the current value and then resets the value.
Syntax:
public long getThenReset()
Parameters: This method does not accepts any parameter.
Return Value: This method returns the value before reset.
Below programs illustrate the above method:
Program 1:
import java.lang.*;
import java.util.concurrent.atomic.LongAccumulator;
public class GFG {
public static void main(String args[])
{
LongAccumulator num = new LongAccumulator(Long::sum, 0L);
num.accumulate( 42 );
num.accumulate( 10 );
num.get();
System.out.println( " the old value is: " + num);
;
num.getThenReset();
System.out.println( " the current value is: " + num);
}
}
|
Output:
the old value is: 52
the current value is: 0
Program 2:
import java.lang.*;
import java.util.concurrent.atomic.LongAccumulator;
public class GFG {
public static void main(String args[])
{
LongAccumulator num = new LongAccumulator(Long::sum, 0L);
num.accumulate( 2 );
num.accumulate( 1 );
num.get();
System.out.println( " the old value is: " + num);
num.getThenReset();
System.out.println( " the current value is: " + num);
}
}
|
Output:
the old value is: 3
the current value is: 0