zhengrenjie / zhengrenjie.github.io

my blog
0 stars 0 forks source link

Java多线程:深入理解volatile关键字以及线程可见性 | zhengrenjie's Blog #16

Open zhengrenjie opened 5 years ago

zhengrenjie commented 5 years ago

https://www.jelliclecat.cn/articles/%E5%A4%9A%E7%BA%BF%E7%A8%8B/volatile.html#more

一、volatile关键字我们先看一个例子: 12345678910111213141516171819202122232425262728public class VisableTest { private int weight = 200; public static void main(String[] args) { new VisableTe

Drew233 commented 5 years ago