使用AtomicInteger原子類代替i++執行緒安全操作
阿新 • • 發佈:2018-12-12
Java中自增自減操作不具原子性,在多執行緒環境下是執行緒不安全的,可以使用使用AtomicInteger原子類代替i++,i--操作完成多執行緒執行緒安全操作。
下面是等於i++多執行緒的自增操作程式碼:
public class AtomicIntegerTest { private static AtomicInteger count = new AtomicInteger(0); public static void add() { for (int i = 0; i < 10000; i++) { System.out.println(count.incrementAndGet()); } } public static void main(String[] args) { for (int i = 0; i < 8; i++) { Thread thread = new Thread(new Runnable() { @Override public void run() { AtomicIntegerTest.add(); } }); thread.start(); } } }
incrementAndGet()方法原始碼(JDK1.8):
/** * Atomically increments by one the current value. * * @return the updated value */ public final int incrementAndGet() { return unsafe.getAndAddInt(this, valueOffset, 1) + 1; }