JVM-垃圾回收概述

垃圾判定 引用計數 差不多就是這個樣子,把被引用的次數記下來,當引用爲0時,就判定是垃圾。 不過存在一個問題,那就是對象引用對象的時候,這個辦法就失效了。 class Node{ Node prev; Node next; int value; } public static void main(String []args){ Node head = new Nod
相關文章
相關標籤/搜索