7.Java中的13个原子操作类
原子更新基本类型:AtomicBoolean、AtomicInteger、AtomicLong
Unsafe只提供了3中CAS方法:compareAndSwapObject
,compareAndSwapInt
和compareAndSwapLong
。
原子更新数组:AtomicIntegerArray、AtomicLongArray、AtomicReferenceArray
原子更新引用:AtomicReference、AtomicStampedReference、AtomicMarkableReference
原子更新字段类:AtomicIntegerFieldUpdater、AtomicLongFieldUpdater、AtomicReferenceFieldUpdater