Java API Tutorial - Java AtomicLong.lazySet(long newValue)








Syntax

AtomicLong.lazySet(long newValue) has the following syntax.

public final void lazySet(long newValue)

Example

In the following code shows how to use AtomicLong.lazySet(long newValue) method.

//from   w  w w.  ja  v a2 s. c o  m
import java.util.concurrent.atomic.AtomicLong;

public class Main {
  public static void main(String[] argv) {
    AtomicLong nextId = new AtomicLong();
    
    nextId.lazySet(12312L);

    System.out.println(nextId.getAndIncrement());
  }
}

The code above generates the following result.