longadder

// Java program to demonstrate
// the LongAdder.sum() method
  
import java.lang.*;
import java.util.concurrent.atomic.LongAdder;
  
public class GFG {
    public static void main(String args[])
    {
  
        // Initialized with 0
        LongAdder num = new LongAdder();
  
        // Print the initial value
        System.out.println("Initial value is: "
                           + num);
  
        // Add 6 to it
        num.add(6);
  
        // Print the final value
        System.out.println("After addition"
                           + " of 6, value is: "
                           + num);
  
        // Add 5 to it
        num.add(5);
  
        // Print the final value
        System.out.println("After addition"
                           + " of 5, value is: "
                           + num);
  
        // sum operation on num
        num.sum();
  
        // Print after sum
        System.out.println("Returned sum value is: "
                           + num);
    }
}
Tame Tortoise