来由:
对于Java中的运算操作,例如自增或自减,若没有进行额外的同步操作,在多线程环境下就是线程不安全的。
private static final AtomicInteger count = new AtomicInteger(); count.incrementAndGet();