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