AtomicInteger() constructor from AtomicInteger has the following syntax.
public AtomicInteger()
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.