volatile public class TestVolatile { public static volatile boolean flag = true; public static void main(String[] args) throws InterruptedException { new Thread(() -> { while (flag)