国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁技術文章
文章詳情頁

淺談java是如何做資源回收補救的

瀏覽:2日期:2022-08-30 10:28:55

學習java的過程,我們經常談論一個對象的回收,尤其是資源類型,如果沒有顯示的關閉,對象就被回收了,說明出現了資源泄漏。java本身為了防止這種情況,做了一些擔保的方式,確??梢宰屛搓P閉的資源合理回收掉。

finalize回收

finalize方式是java對象被回收時觸發的一個方法。java的很多資源對象,都是在finalize中寫了擔保的方法。

/** * Ensures that the <code>close</code> method of this file input stream is * called when there are no more references to it. * * @exception IOException if an I/O error occurs. * @see java.io.FileInputStream#close() */ protected void finalize() throws IOException { if ((fd != null) && (fd != FileDescriptor.in)) { /* if fd is shared, the references in FileDescriptor * will ensure that finalizer is only called when * safe to do so. All references using the fd have * become unreachable. We can call close() */ close(); } }

上面是FileInputStream的finalize方法,在方法被調用時,會檢測文件描述符是否存在,如果存在的話就調用close方法。來確保資源的回收。

finalize方法在我們學習java的時候都并不推薦進行重寫,也不推薦寫復雜的邏輯在里面,主要是因為gc的時候,都會調用這個方法,如果執行的內容太多,就會導致gc被拖長。影響程序的正常運行。而且這里也只是做一個簡單的擔保。大部分希望的還是編寫代碼的人可以調用close。這樣在做判斷的時候就結束了,而不用真正的調用關閉的代碼。

Cleaner回收

在DirectByteBuffer中,使用了一個Cleaner對象進行補救的。

unsafe.setMemory(base, size, (byte) 0); if (pa && (base % ps != 0)) { // Round up to page boundary address = base + ps - (base & (ps - 1)); } else { address = base; } cleaner = Cleaner.create(this, new Deallocator(base, size, cap)); att = null;

申請完資源后,會創建一個Deallocator對象。

private static class Deallocator implements Runnable { private static Unsafe unsafe = Unsafe.getUnsafe(); private long address; private long size; private int capacity; private Deallocator(long address, long size, int capacity) { assert (address != 0); this.address = address; this.size = size; this.capacity = capacity; } public void run() { if (address == 0) {// Paranoiareturn; } unsafe.freeMemory(address); address = 0; Bits.unreserveMemory(size, capacity); } }

Deallocator的run方法中就進行了資源的釋放。執行的時機就是靠 Cleaner來觸發的。

Cleaner是PhantomReference的子類,PhantomReference是Reference的子類。

在中有一個ReferenceHandler

private static class ReferenceHandler extends Thread {

他的run方法就是調用cleaner里的clean方法。這個線程是在靜態塊里啟動起來的。

Thread handler = new ReferenceHandler(tg, 'Reference Handler'); /* If there were a special system-only priority greater than * MAX_PRIORITY, it would be used here */ handler.setPriority(Thread.MAX_PRIORITY); handler.setDaemon(true); handler.start(); SharedSecrets.setJavaLangRefAccess(new JavaLangRefAccess() { @Override public boolean tryHandlePendingReference() {return tryHandlePending(false); } });

于此同時,并且給SharedSecrets設置了一個JavaLangRefAccess。

調用clean方法的過程在tryHandlePending里,這里的參數很重要。

static boolean tryHandlePending(boolean waitForNotify) { Reference<Object> r; Cleaner c; try { synchronized (lock) {if (pending != null) { r = pending; // ’instanceof’ might throw OutOfMemoryError sometimes // so do this before un-linking ’r’ from the ’pending’ chain... c = r instanceof Cleaner ? (Cleaner) r : null; // unlink ’r’ from ’pending’ chain pending = r.discovered; r.discovered = null;} else { // The waiting on the lock may cause an OutOfMemoryError // because it may try to allocate exception objects. if (waitForNotify) { lock.wait(); } // retry if waited return waitForNotify;} } } catch (OutOfMemoryError x) { // Give other threads CPU time so they hopefully drop some live references // and GC reclaims some space. // Also prevent CPU intensive spinning in case ’r instanceof Cleaner’ above // persistently throws OOME for some time... Thread.yield(); // retry return true; } catch (InterruptedException x) { // retry return true; }

waitForNotify是true的時候,在沒有回收對象的時候,會進入阻塞,然后等ooe。外層是個死循環,就會被再次調用到,下次進來的時候就可以出發clean了。

ReferenceHandler是管理機制的一種。

還有一種就是SharedSecrets調用tryHandlePending(false)。

在另外一個類,bits里

final JavaLangRefAccess jlra = SharedSecrets.getJavaLangRefAccess(); // retry while helping enqueue pending Reference objects // which includes executing pending Cleaner(s) which includes // Cleaner(s) that free direct buffer memory while (jlra.tryHandlePendingReference()) { if (tryReserveMemory(size, cap)) {return; } }

在做reserveMemory的時候,會從SharedSecrets來調用tryHandlePending(false)。這里又變相的進行了一次回收。

小結

java回收利用兩種機制。一種是finalize,一種是Cleaner。其中Cleaner一部分依賴oome觸發一次回收,一部分利用reserveMemory中做一次回收。

到此這篇關于淺談java是如何做資源回收補救的的文章就介紹到這了,更多相關java 資源回收補救內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!

標簽: Java
相關文章:
主站蜘蛛池模板: 亚洲在线视频免费 | 色香欲综合成人免费视频 | 欧美xxxxx九色视频免费观看 | 黄色一及毛片 | 免费播放巨茎人妖不卡片 | 国产伦一区二区三区四区久久 | 免费a级毛片视频 | a毛片a毛片a视频 | 国产成人亚洲精品影院 | 久久久网站亚洲第一 | 国产一区二区影视 | 毛片大片免费看 | 日韩国产欧美成人一区二区影院 | 最新国产大片高清视频 | 国产精品亚洲专一区二区三区 | 在线看精品 | 一级做a爰片性色毛片男 | 国产视频久久久久 | 久久国内精品自在自线400部o | 欧美自拍网 | 在线精品日韩一区二区三区 | 欧美三级美国一级 | 九九在线精品视频播放 | 欧美一级毛级毛片 | 欧美一级aa天码毛片 | 成在线人永久免费播放视频 | 日韩精品一区二区三区免费视频 | 国产大臿蕉香蕉大视频女 | 欧美在线香蕉在线现视频 | 亚洲欧美日韩国产精品久久 | 女人张开腿让男人桶免费最新 | 亚洲成人美女 | 国产精品三级手机在线观看 | 亚洲第一页乱 | 国产一区二区在线 |播放 | 在线免费观看亚洲 | 亚洲在线日韩 | 亚洲美女一级片 | 国产一区二区三区免费看 | 欧美一级高清毛片aaa | 青草青99久久99九九99九九九 |