Online Java Compiler By
JavaTpoint.com
import java.util.concurrent.atomic.AtomicLong; public class AtomicLongLazySetExample1 { public static void main (String [] args) { AtomicLong atomiclong = new AtomicLong(); //Sets the Specified value atomiclong.lazySet(5); //Prints the Set value System.out.println(atomiclong); } }
Output