概要
app
AtomicInteger,AtomicLong和AtomicBoolean这三个基本类型的原子类的原理和用法类似。本文章以AtomicLong对基本类型的原子类进行介绍函数
AtomicLong介绍和函数列表性能
AtomicLong的做用是对长整型进行原子操做。在32位操做系统中,64位的long和double变量因为会被JVM看成两个分离的32位来进行操做,因此不具备原子性。而使用AtomicLong能让long的操做保持原子性。this
函数列表:spa
// 构造函数 AtomicLong() // 建立值为initialValue的AtomicLong对象 AtomicLong(long initialValue) // 以原子方式设置当前值为newValue。 final void set(long newValue) // 获取当前值 final long get() // 以原子方式将当前值减 1,并返回减1后的值。等价于“--num” final long decrementAndGet() // 以原子方式将当前值减 1,并返回减1前的值。等价于“num--” final long getAndDecrement() // 以原子方式将当前值加 1,并返回加1后的值。等价于“++num” final long incrementAndGet() // 以原子方式将当前值加 1,并返回加1前的值。等价于“num++” final long getAndIncrement() // 以原子方式将delta与当前值相加,并返回相加后的值。 final long addAndGet(long delta) // 以原子方式将delta添加到当前值,并返回相加前的值。 final long getAndAdd(long delta) // 若是当前值 == expect,则以原子方式将该值设置为update。成功返回true,不然返回false,而且不修改原值。 final boolean compareAndSet(long expect, long update) // 以原子方式设置当前值为newValue,并返回旧值。 final long getAndSet(long newValue) // 返回当前值对应的int值 int intValue() // 获取当前值对应的long值 long longValue() // 以 float 形式返回当前值 float floatValue() // 以 double 形式返回当前值 double doubleValue() // 最后设置为给定值。延时设置变量值,这个等价于set()方法,可是因为字段是volatile类型的,所以次字段的修改会比普通字段(非volatile字段)有稍微的性能延时(尽管能够忽略),因此若是不是想当即读取设置的新值,容许在“后台”修改值,那么此方法就颇有用。若是仍是难以理解,这里就相似于启动一个后台线程如执行修改新值的任务,原线程就不等待修改结果当即返回(这种解释实际上是不正确的,可是能够这么理解)。 final void lazySet(long newValue) // 若是当前值 == 预期值,则以原子方式将该设置为给定的更新值。JSR规范中说:以原子方式读取和有条件地写入变量但不 建立任何 happen-before 排序,所以不提供与除 weakCompareAndSet 目标外任何变量之前或后续读取或写入操做有关的任何保证。大意就是说调用weakCompareAndSet时并不能保证不存在happen-before的发生(也就是可能存在指令重排序致使此操做失败)。可是从Java源码来看,其实此方法并无实现JSR规范的要求,最后效果和compareAndSet是等效的,都调用了unsafe.compareAndSwapInt()完成操做。 final boolean weakCompareAndSet(long expect, long update)
incrementAndGet()的源码以下:操作系统
public final long incrementAndGet() { for (;;) { // 获取AtomicLong当前对应的long值 long current = get(); // 将current加1 long next = current + 1; // 经过CAS函数,更新current的值 if (compareAndSet(current, next)) return next; } }
说明:线程
(01)incrementAndGet()首先会根据get()获取AtomicLong对应的long值。该值是volatile类型的变量,get()的源码以下:code
// value是AtomicLong对应的long值 private volatile long value; // 返回AtomicLong对应的long值 public final long get() { return value; }
(02)incrementAndGet()接着将current加一,而后经过CAS函数,将新的值赋值给value对象
CAS的源码为:blog
public final boolean compareAndSet(long expect, long update) { return unsafe.compareAndSwapLong(this, valueOffset, expect, update); }
CAS的做用是更新AtomicLong对应的long值。它会比较AtomicLong的原始值是否与expect相等,若相等的话,则设置AtomicLong的值为update
AtomicLong示例
public class Main { public static void main(String[] args) { AtomicLong mAtoLong = new AtomicLong(); mAtoLong.set(0x0123456789ABCDEFL); System.out.printf("%20s : 0x%016X\n", "get()", mAtoLong.get()); System.out.printf("%20s : 0x%016X\n", "intValue()", mAtoLong.intValue()); System.out.printf("%20s : 0x%016X\n", "longValue()", mAtoLong.longValue()); System.out.printf("%20s : %s\n", "doubleValue()", mAtoLong.doubleValue()); System.out.printf("%20s : %s\n", "floatValue()", mAtoLong.floatValue()); System.out.printf("%20s : 0x%016X\n", "getAndDecrement()", mAtoLong.getAndDecrement()); System.out.printf("%20s : 0x%016X\n", "decrementAndGet()", mAtoLong.decrementAndGet()); System.out.printf("%20s : 0x%016X\n", "getAndIncrement()", mAtoLong.getAndIncrement()); System.out.printf("%20s : 0x%016X\n", "incrementAndGet()", mAtoLong.incrementAndGet()); System.out.printf("%20s : 0x%016X\n", "addAndGet(0x10)", mAtoLong.addAndGet(0x10)); System.out.printf("%20s : 0x%016X\n", "getAndAdd(0x10)", mAtoLong.getAndAdd(0x10)); System.out.printf("\n%20s : 0x%016X\n", "get()", mAtoLong.get()); System.out.printf("%20s : %s\n", "compareAndSet()", mAtoLong.compareAndSet(0x12345679L, 0xFEDCBA9876543210L)); System.out.printf("%20s : 0x%016X\n", "get()", mAtoLong.get()); } }
运行结果:
get() : 0x0123456789ABCDEF intValue() : 0x0000000089ABCDEF longValue() : 0x0123456789ABCDEF doubleValue() : 8.1985529216486896E16 floatValue() : 8.1985531E16 getAndDecrement() : 0x0123456789ABCDEF decrementAndGet() : 0x0123456789ABCDED getAndIncrement() : 0x0123456789ABCDED incrementAndGet() : 0x0123456789ABCDEF addAndGet(0x10) : 0x0123456789ABCDFF getAndAdd(0x10) : 0x0123456789ABCDFF get() : 0x0123456789ABCE0F compareAndSet() : false