05 - Volatile伪共享问题与Volatile重排序问题
作者:互联网
为什么Volatile不能保证原子性
public class VolatileAtomThread extends Thread {
private static volatile int count;
public static void main(String[] args) {
ArrayList<Thread> threads = new ArrayList<>();
for (int i = 0; i < 10; i++) {
Thread tempThread = new Thread(() -> {
for (int j = 0; j < 1000; j++) {
count++;
}
});
threads.add(tempThread);
tempThread.start();
}
threads.forEach(thread -> {
try {
thread.join();
} catch (InterruptedException e) {
e.printStackTrace();
}
});
System.out.println(count);
}
}
Volatile为了能够保证数据的可见性,但是不能够保证原子性,及时的将工作内存的数据刷新主内存中,导致其他的工作内存的数据变为无效状态,其他工作内存做的count++操作等于就是无效丢失了,这是为什么我们加上Volatile count结果在小于10000以内。
标签:count,05,++,tempThread,int,Volatile,内存,排序 来源: https://www.cnblogs.com/YeQuShangHun/p/16597370.html