线程安全的可见性问题


	线程安全的可见性问题
[编程语言教程]

目录

  • 指令重排序    

 指令重排序

java编程语言的语义允许编译器和微处理器执行优化  

技术图片

实例的代码

public class VisibilityDemo2 {
    // 状态标识 (不用缓存)
    private boolean flag = true;
    
    public static void main(String[] args) throws InterruptedException {
        VisibilityDemo2 demo1 = new VisibilityDemo2();
        new Thread(new Runnable() {
            public void run() {
                int i = 0;
                while (demo1.flag) {
                    i++;
                }
                System.out.println(i);
            }
        }).start();

        TimeUnit.SECONDS.sleep(2);
        // 设置is为false,使上面的线程结束while循环
        demo1.flag = false;
        System.out.println("被置为false了.");
    }
}  
hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » 线程安全的可见性问题