Java AtomicLong getAndAdd() Method

The getAndAdd() method of Java AtomicLong class adds a number to the AtomicLong but returns the value the AtomicLong had before the value was added.

Syntax

Parameters

delta - The value to add

Return value

The previous value

Example 1

Test it Now

Output:

0

Example 2

Test it Now

Output:

10

Example 3

Test it Now

Output:

-5

Example 4

Test it Now

Output:

-20

Next TopicJava Double




Latest Courses