第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

覆蓋同步鎖中使用的變量是否會阻止其垃圾收集?

覆蓋同步鎖中使用的變量是否會阻止其垃圾收集?

侃侃爾雅 2022-06-04 16:58:02
我在我的服務(wù)中有一個緩存作為成員變量,我正在創(chuàng)建一個通過 JMX MBean 公開它的方法,以便我可以在運(yùn)行時使用新的緩存到期時間拆除并重新創(chuàng)建我的 vogon 緩存:public class CachedVogonService implements CachedVogonServiceMBean {    private LoadingCache<String, Vogon> cache;    private long expiryInSeconds;    private VogonService service;    public CachedVogonService(VogonService newService,                                long newExpiryInSeconds) {        this.expiryInSeconds = newExpiryInSeconds;        this.service = newService;        this.cache = createCache(newService, newExpiryInSeconds);    }    private LoadingCache<String, Vogon> createCache(            VogonService newService,            long expiryInSeconds) {        return CacheBuilder.newBuilder()                .refreshAfterWrite(expiryInSeconds, TimeUnit.SECONDS)                .build(new VogonCacheLoader(                        Executors.newCachedThreadPool(), newService));    }    /**     * This is the method I am exposing in JMX     */        @Override    public void setExpiryInSeconds(long newExpiryInSeconds) {        this.expiryInSeconds = newExpiryInSeconds;        synchronized (this.cache) {            this.cache = createCache(service, expiryInSeconds);        }    }我擔(dān)心我的鎖定技術(shù)會導(dǎo)致 JVM 保留對舊緩存的引用并防止它被垃圾收集。如果我的服務(wù)對象丟失了對同步塊內(nèi)舊緩存的引用,那么當(dāng)執(zhí)行退出該塊時,它是否會留下舊緩存對象仍標(biāo)記為鎖定 - 使其無法用于垃圾收集?
查看完整描述

1 回答

?
肥皂起泡泡

TA貢獻(xiàn)1829條經(jīng)驗 獲得超6個贊

通過查看為類似情況生成的字節(jié)碼,我們可以看到鎖定字段的對象地址被復(fù)制并用于獲取和釋放鎖。所以原始鎖定對象用于鎖定。


在同步塊內(nèi)用新對象更改鎖定字段后,另一個線程可以獲取新對象的鎖定,并可以進(jìn)入同步代碼塊。像這樣使用同步,不提供線程之間的同步。您應(yīng)該使用另一個對象進(jìn)行鎖定。(如最終對象 cacheLock = new Object())


僅供參考,這種用法不會阻止垃圾收集。由于這里提到的對象地址在該方法的棧幀內(nèi),一旦方法執(zhí)行完畢,棧幀將被銷毀,不再保留對舊對象的引用。(但不要像這樣使用同步。)


您可以在此處查看 JVM 指令集


public class SyncTest {


    private Long value;


    public static void main(String[] args) {

        new SyncTest().testLock();

    }


    public SyncTest() {

        value = new Long(1);

    }


    private void testLock() {

        synchronized (this.value) {

            this.value = new Long(15);

        }

    }

}


  private void testLock();

     0  aload_0 [this]

     1  getfield t1.SyncTest.value : java.lang.Long [27] // push value field to operand stack

     4  dup // duplicate value field push it to operand stack

     5  astore_1 // store the top of the operand stack at [1] of local variable array (which is the duplicated value field)

     6  monitorenter // aquire lock on top of the operand stack 

     7  aload_0 [this]

     8  new java.lang.Long [22]

    11  dup

    12  ldc2_w <Long 15> [31]

    15  invokespecial java.lang.Long(long) [24]

    18  putfield t1.SyncTest.value : java.lang.Long [27]

    21  aload_1 // load the [1] of local variable array to the operand stack (which is the duplicated value field previously stored)

    22  monitorexit // release the lock on top of the operand stack

    23  goto 29

    26  aload_1

    27  monitorexit

    .....


查看完整回答
反對 回復(fù) 2022-06-04
  • 1 回答
  • 0 關(guān)注
  • 96 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號