您好,登錄后才能下訂單哦!
這篇“java內(nèi)部類內(nèi)存泄漏的原因是什么”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“java內(nèi)部類內(nèi)存泄漏的原因是什么”文章吧。
原因分析
1、匿名內(nèi)部類沒有被引用的話,匿名內(nèi)部類的對(duì)象用完的話就有回收的機(jī)會(huì)。
2、如果內(nèi)部類只是在外部類中引用,當(dāng)外部類不再引用時(shí),外部類和內(nèi)部類可以通過GC回收。
內(nèi)部類引用被外部類以外的其他類引用時(shí),內(nèi)部類和外部類不能被GC回收,即使外部類不被引用,內(nèi)部類也有指向外部類的引用)。
實(shí)例
public class ClassOuter { Object object = new Object() { public void finalize() { System.out.println("inner Free the occupied memory..."); } }; public void finalize() { System.out.println("Outer Free the occupied memory..."); } } public class TestInnerClass { public static void main(String[] args) { try { Test(); } catch (InterruptedException e) { e.printStackTrace(); } } private static void Test() throws InterruptedException { System.out.println("Start of program."); ClassOuter outer = new ClassOuter(); Object object = outer.object; outer = null; System.out.println("Execute GC"); System.gc(); Thread.sleep(3000); System.out.println("End of program."); } }
以上就是關(guān)于“java內(nèi)部類內(nèi)存泄漏的原因是什么”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。