Java API Tutorial - Java AtomicInteger() Constructor








Syntax

AtomicInteger() constructor from AtomicInteger has the following syntax.

public AtomicInteger()

Example

In the following code shows how to use AtomicInteger.AtomicInteger() constructor.

import java.util.concurrent.atomic.AtomicInteger;

public class Main {
  public static void main(String[] argv) throws Exception {
    AtomicInteger atomicInteger = new AtomicInteger();

    System.out.println(atomicInteger.get());
  }
}

The code above generates the following result.