AtomicLong.longValue() has the following syntax.
public long longValue()
In the following code shows how to use AtomicLong.longValue() method.
// w ww .ja va2s.co m import java.util.concurrent.atomic.AtomicLong; public class Main { public static void main(String[] argv) { AtomicLong nextId = new AtomicLong(); System.out.println(nextId.longValue()); } }
The code above generates the following result.