Online Java Compiler By
JavaTpoint.com
import java.util.concurrent.atomic.AtomicInteger; public class AtomicIntegerGetExp4 { public static void main(String[] args) { AtomicInteger value= new AtomicInteger(43); value.get(); System.out.println(value); } }
Output