溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

atomic原子類怎么在Java 中使用

發(fā)布時(shí)間:2021-03-24 17:12:28 來源:億速云 閱讀:101 作者:Leah 欄目:編程語言

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)atomic原子類怎么在Java 中使用,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

public class UseAtomic {
public static void main(String[] args) {
AtomicInteger atomicInteger=new AtomicInteger();
for(int i=0;i<10;i++){
Thread t=new Thread(new AtomicTest(atomicInteger));
t.start();
try {
t.join(0);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
System.out.println(atomicInteger.get());
}
}
class AtomicTest implements Runnable{
AtomicInteger atomicInteger;
public AtomicTest(AtomicInteger atomicInteger){
this.atomicInteger=atomicInteger;
}
@Override
public void run() {
atomicInteger.addAndGet(1);
atomicInteger.addAndGet(2);
atomicInteger.addAndGet(3);
atomicInteger.addAndGet(4);
}
}

最終的輸出結(jié)果為100,可見這個(gè)程序是線程安全的。如果把AtomicInteger換成變量i的話,那最終結(jié)果就不確定了。

打開AtomicInteger的源碼可以看到:

// setup to use Unsafe.compareAndSwapInt for updates
private static final Unsafe unsafe = Unsafe.getUnsafe();
private volatile int value;

volatile關(guān)鍵字用來保證內(nèi)存的可見性(但不能保證線程安全性),線程讀的時(shí)候直接去主內(nèi)存讀,寫操作完成的時(shí)候立即把數(shù)據(jù)刷新到主內(nèi)存當(dāng)中。

CAS簡要

/**
* Atomically sets the value to the given updated value
* if the current value {@code ==} the expected value.
*
* @param expect the expected value
* @param update the new value
* @return {@code true} if successful. False return indicates that
* the actual value was not equal to the expected value.
*/
public final boolean compareAndSet(int expect, int update) {
return unsafe.compareAndSwapInt(this, valueOffset, expect, update);
}

從注釋就可以看出:當(dāng)線程寫數(shù)據(jù)的時(shí)候,先對(duì)內(nèi)存中要操作的數(shù)據(jù)保留一份舊值,真正寫的時(shí)候,比較當(dāng)前的值是否和舊值相同,如果相同,則進(jìn)行寫操作。如果不同,說明在此期間值已經(jīng)被修改過,則重新嘗試。

compareAndSet使用Unsafe調(diào)用native本地方法CAS(CompareAndSet)遞增數(shù)值。

CAS利用CPU調(diào)用底層指令實(shí)現(xiàn)。

兩種方式:總線加鎖或者緩存加鎖保證原子性。

上述就是小編為大家分享的atomic原子類怎么在Java 中使用了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI