volatile中的一些问题猜测

public class JmmDemo {

    private static int temp = 1;

    private static int ans = 0;

    static class THread implements Runnable {

        @Override
        public void run() {

            while (true) {

                ans++;

                if (ans == 1000) {

                    break;

                }

                System.out.println(temp + "b");

            }

        }

    }

    public static void main(String[] args) throws InterruptedException {

        new Thread(new THread()).start();

        Thread.sleep(1000);

        temp = 2;

    }

}

这个代码打印一直是1b不会出现2b(首先我的cpu是I5 6200u, a家的u不知道会怎么样有兴趣的可以自己试试)。这里的结果和大部分介绍volatile的文章的结果一样。但是那么接下来换一下

public class JmmDemo {

    private static int temp = 1;

    static class THread implements Runnable {

        @Override
        public void run() {

            while (true) {

                try {

                    Thread.sleep(1000);

                    System.out.println(temp + "b");

                } catch (InterruptedException e) {

                    e.printStackTrace();

                }

            }

        }

    }

    public static void main(String[] args) throws InterruptedException {

        new Thread(new THread()).start();

        Thread.sleep(1000);

        temp = 2;

    }

}

这个代码会打印出2b,为什么呢?

我觉得是因为sleep以后线程放弃了cpu,使得工作线程内存有时间更新主内存的数据,导致了这个现象(迫真)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值