一个解释volatile关键字作用的最好的例子

Posted 龙宇在天

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一个解释volatile关键字作用的最好的例子相关的知识,希望对你有一定的参考价值。

闲话少叙,上代码

package com.dwz.concurrency2.chapter3;

public class VolatileTest {
    private static volatile int INIT_VALUE = 0; 
    private static final int MAX_LIMIT = 5;
    
    public static void main(String[] args) {
        new Thread(() -> {
            int localValue = INIT_VALUE;
            while (localValue < MAX_LIMIT) {
                if(localValue != INIT_VALUE) {
                    System.out.printf("The value updated to [%d]\n", INIT_VALUE);
                    localValue = INIT_VALUE;
                }
            }
        }, "READER").start();
        
        new Thread(() -> {
            int localValue = INIT_VALUE;
            while (localValue < MAX_LIMIT) {
                System.out.printf("update the value to [%d]\n", ++localValue);
                INIT_VALUE = localValue;
                try {
                    Thread.sleep(500);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        }, "UPDATER").start();
    }
}

测试结果,出现两种情况:

1.INIT_VALUE被volatile关键字修饰时,READER线程是可以感知到UPDATER的变化

update the value to [1]
The value updated to [1]
update the value to [2]
The value updated to [2]
update the value to [3]
The value updated to [3]
update the value to [4]
The value updated to [4]
update the value to [5]
The value updated to [5]

2.INIT_VALUE缺少volatile关键字修饰时,READER线程感知不到UPDATER的变化

update the value to [1]
update the value to [2]
update the value to [3]
update the value to [4]
update the value to [5]

 volatile可以保证内存可见性,有序性,不让jvm自作主张去优化,可以保证读之前的写操作完成,但是不能保证原子性

以上是关于一个解释volatile关键字作用的最好的例子的主要内容,如果未能解决你的问题,请参考以下文章

有谁能否帮我解释一下C语言中的volatile关键字,最好是要有程序例子的。谢谢啊!!

Java volatile 关键字完全解释 - 附例子

一个例子说清valotile关键字的作用

单例模式中volatile关键字的作用

c代码中volatile关键字的作用,除了阻止cpu直接使用寄存器和cache中变量,还有其他功能吗?

一文搞懂Volatile关键字的作用