JUC源码分析3-原子变量-AtomicIntegerFieldUpdater/AtomicLongFieldUpdater/AtomicReferenceFieldUpdater
如果我们系统中已经有某个类的变量定义为volatile了,现在为了保证对这个变量的原子性操作,就可以尝试使用这几个类,举个栗子:importsun.reflect.Reflection;
publicclassAtomicFieldIncr{
//这里最好是publicvolatile,不要加final、static
//修饰符最好也不要为protected,private,涉及调用者访问被调