概要
AtomicInteger, AtomicLong和AtomicBoolean這3個基本類型的原子類的原理和用法相似。本章以AtomicLong對基本類型的原子類進行介紹。內容包括:
AtomicLong介紹和函數列表
AtomicLong源碼分析(基於JDK1.7.0_40)
AtomicLong示例
轉載請注明出處:http://www.cnblogs.com/skywang12345/p/3514593.html
AtomicLong介紹和函數列表
AtomicLong是作用是對長整形進行原子操作。
在32位操作系統中,64位的long 和 double 變量由於會被JVM當作兩個分離的32位來進行操作,所以不具有原子性。而使用AtomicLong能讓long的操作保持原子型。
AtomicLong函數列表
// 構造函數 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)
AtomicLong源碼分析(基於JDK1.7.0_40)
AtomicLong的完整源碼

1 /* 2 * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 3 * 4 * 5 * 6 * 7 * 8 * 9 * 10 * 11 * 12 * 13 * 14 * 15 * 16 * 17 * 18 * 19 * 20 * 21 * 22 * 23 */ 24 25 /* 26 * 27 * 28 * 29 * 30 * 31 * Written by Doug Lea with assistance from members of JCP JSR-166 32 * Expert Group and released to the public domain, as explained at 33 * http://creativecommons.org/publicdomain/zero/1.0/ 34 */ 35 36 package java.util.concurrent.atomic; 37 import sun.misc.Unsafe; 38 39 /** 40 * A {@code long} value that may be updated atomically. See the 41 * {@link java.util.concurrent.atomic} package specification for 42 * description of the properties of atomic variables. An 43 * {@code AtomicLong} is used in applications such as atomically 44 * incremented sequence numbers, and cannot be used as a replacement 45 * for a {@link java.lang.Long}. However, this class does extend 46 * {@code Number} to allow uniform access by tools and utilities that 47 * deal with numerically-based classes. 48 * 49 * @since 1.5 50 * @author Doug Lea 51 */ 52 public class AtomicLong extends Number implements java.io.Serializable { 53 private static final long serialVersionUID = 1927816293512124184L; 54 55 // setup to use Unsafe.compareAndSwapLong for updates 56 private static final Unsafe unsafe = Unsafe.getUnsafe(); 57 private static final long valueOffset; 58 59 /** 60 * Records whether the underlying JVM supports lockless 61 * compareAndSwap for longs. While the Unsafe.compareAndSwapLong 62 * method works in either case, some constructions should be 63 * handled at Java level to avoid locking user-visible locks. 64 */ 65 static final boolean VM_SUPPORTS_LONG_CAS = VMSupportsCS8(); 66 67 /** 68 * Returns whether underlying JVM supports lockless CompareAndSet 69 * for longs. Called only once and cached in VM_SUPPORTS_LONG_CAS. 70 */ 71 private static native boolean VMSupportsCS8(); 72 73 static { 74 try { 75 valueOffset = unsafe.objectFieldOffset 76 (AtomicLong.class.getDeclaredField("value")); 77 } catch (Exception ex) { throw new Error(ex); } 78 } 79 80 private volatile long value; 81 82 /** 83 * Creates a new AtomicLong with the given initial value. 84 * 85 * @param initialValue the initial value 86 */ 87 public AtomicLong(long initialValue) { 88 value = initialValue; 89 } 90 91 /** 92 * Creates a new AtomicLong with initial value {@code 0}. 93 */ 94 public AtomicLong() { 95 } 96 97 /** 98 * Gets the current value. 99 * 100 * @return the current value 101 */ 102 public final long get() { 103 return value; 104 } 105 106 /** 107 * Sets to the given value. 108 * 109 * @param newValue the new value 110 */ 111 public final void set(long newValue) { 112 value = newValue; 113 } 114 115 /** 116 * Eventually sets to the given value. 117 * 118 * @param newValue the new value 119 * @since 1.6 120 */ 121 public final void lazySet(long newValue) { 122 unsafe.putOrderedLong(this, valueOffset, newValue); 123 } 124 125 /** 126 * Atomically sets to the given value and returns the old value. 127 * 128 * @param newValue the new value 129 * @return the previous value 130 */ 131 public final long getAndSet(long newValue) { 132 while (true) { 133 long current = get(); 134 if (compareAndSet(current, newValue)) 135 return current; 136 } 137 } 138 139 /** 140 * Atomically sets the value to the given updated value 141 * if the current value {@code ==} the expected value. 142 * 143 * @param expect the expected value 144 * @param update the new value 145 * @return true if successful. False return indicates that 146 * the actual value was not equal to the expected value. 147 */ 148 public final boolean compareAndSet(long expect, long update) { 149 return unsafe.compareAndSwapLong(this, valueOffset, expect, update); 150 } 151 152 /** 153 * Atomically sets the value to the given updated value 154 * if the current value {@code ==} the expected value. 155 * 156 * <p>May <a href="package-summary.html#Spurious">fail spuriously</a> 157 * and does not provide ordering guarantees, so is only rarely an 158 * appropriate alternative to {@code compareAndSet}. 159 * 160 * @param expect the expected value 161 * @param update the new value 162 * @return true if successful. 163 */ 164 public final boolean weakCompareAndSet(long expect, long update) { 165 return unsafe.compareAndSwapLong(this, valueOffset, expect, update); 166 } 167 168 /** 169 * Atomically increments by one the current value. 170 * 171 * @return the previous value 172 */ 173 public final long getAndIncrement() { 174 while (true) { 175 long current = get(); 176 long next = current + 1; 177 if (compareAndSet(current, next)) 178 return current; 179 } 180 } 181 182 /** 183 * Atomically decrements by one the current value. 184 * 185 * @return the previous value 186 */ 187 public final long getAndDecrement() { 188 while (true) { 189 long current = get(); 190 long next = current - 1; 191 if (compareAndSet(current, next)) 192 return current; 193 } 194 } 195 196 /** 197 * Atomically adds the given value to the current value. 198 * 199 * @param delta the value to add 200 * @return the previous value 201 */ 202 public final long getAndAdd(long delta) { 203 while (true) { 204 long current = get(); 205 long next = current + delta; 206 if (compareAndSet(current, next)) 207 return current; 208 } 209 } 210 211 /** 212 * Atomically increments by one the current value. 213 * 214 * @return the updated value 215 */ 216 public final long incrementAndGet() { 217 for (;;) { 218 long current = get(); 219 long next = current + 1; 220 if (compareAndSet(current, next)) 221 return next; 222 } 223 } 224 225 /** 226 * Atomically decrements by one the current value. 227 * 228 * @return the updated value 229 */ 230 public final long decrementAndGet() { 231 for (;;) { 232 long current = get(); 233 long next = current - 1; 234 if (compareAndSet(current, next)) 235 return next; 236 } 237 } 238 239 /** 240 * Atomically adds the given value to the current value. 241 * 242 * @param delta the value to add 243 * @return the updated value 244 */ 245 public final long addAndGet(long delta) { 246 for (;;) { 247 long current = get(); 248 long next = current + delta; 249 if (compareAndSet(current, next)) 250 return next; 251 } 252 } 253 254 /** 255 * Returns the String representation of the current value. 256 * @return the String representation of the current value. 257 */ 258 public String toString() { 259 return Long.toString(get()); 260 } 261 262 263 public int intValue() { 264 return (int)get(); 265 } 266 267 public long longValue() { 268 return get(); 269 } 270 271 public float floatValue() { 272 return (float)get(); 273 } 274 275 public double doubleValue() { 276 return (double)get(); 277 } 278 279 }
AtomicLong的代碼很簡單,下面僅以incrementAndGet()為例,對AtomicLong的原理進行說明。
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()的源碼如下:
// value是AtomicLong對應的long值 private volatile long value; // 返回AtomicLong對應的long值 public final long get() { return value; }
(02) incrementAndGet()接着將current加1,然后通過CAS函數,將新的值賦值給value。
compareAndSet()的源碼如下:
public final boolean compareAndSet(long expect, long update) { return unsafe.compareAndSwapLong(this, valueOffset, expect, update); }
compareAndSet()的作用是更新AtomicLong對應的long值。它會比較AtomicLong的原始值是否與expect相等,若相等的話,則設置AtomicLong的值為update。
AtomicLong示例
1 // LongTest.java的源碼 2 import java.util.concurrent.atomic.AtomicLong; 3 4 public class LongTest { 5 6 public static void main(String[] args){ 7 8 // 新建AtomicLong對象 9 AtomicLong mAtoLong = new AtomicLong(); 10 11 mAtoLong.set(0x0123456789ABCDEFL); 12 System.out.printf("%20s : 0x%016X\n", "get()", mAtoLong.get()); 13 System.out.printf("%20s : 0x%016X\n", "intValue()", mAtoLong.intValue()); 14 System.out.printf("%20s : 0x%016X\n", "longValue()", mAtoLong.longValue()); 15 System.out.printf("%20s : %s\n", "doubleValue()", mAtoLong.doubleValue()); 16 System.out.printf("%20s : %s\n", "floatValue()", mAtoLong.floatValue()); 17 18 System.out.printf("%20s : 0x%016X\n", "getAndDecrement()", mAtoLong.getAndDecrement()); 19 System.out.printf("%20s : 0x%016X\n", "decrementAndGet()", mAtoLong.decrementAndGet()); 20 System.out.printf("%20s : 0x%016X\n", "getAndIncrement()", mAtoLong.getAndIncrement()); 21 System.out.printf("%20s : 0x%016X\n", "incrementAndGet()", mAtoLong.incrementAndGet()); 22 23 System.out.printf("%20s : 0x%016X\n", "addAndGet(0x10)", mAtoLong.addAndGet(0x10)); 24 System.out.printf("%20s : 0x%016X\n", "getAndAdd(0x10)", mAtoLong.getAndAdd(0x10)); 25 26 System.out.printf("\n%20s : 0x%016X\n", "get()", mAtoLong.get()); 27 28 System.out.printf("%20s : %s\n", "compareAndSet()", mAtoLong.compareAndSet(0x12345679L, 0xFEDCBA9876543210L)); 29 System.out.printf("%20s : 0x%016X\n", "get()", mAtoLong.get()); 30 } 31 }
運行結果:
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 get() : 0x0123456789ABCE0F
更多內容