Java并发 AtomicInteger
前言:AtomicInteger是一个专门用于以线程安全方式更新整数设计的类。 为什么我们不能简单地使用volatile int ?AtomicInteger//非线程安全计数器 volatile intpublic class CounterNotThreadSafe { private volatile int count = 0; public v...