一个类,有static变量counter,所有类实例共享
如果多个类实例,通过多线程访问static变量,就会产生覆盖的情况。
会发现counter偏小。
解决方法:
AtomicLong counter;
counter.getAndIncrement()
结果就会正确了。