根据我的理解,如果没有其他“指向”该对象的内容,则Java中的垃圾回收会清除某些对象。
我的问题是,如果我们遇到这样的情况,会发生什么:
class Node {
public object value;
public Node next;
public Node(object o, Node n) { value = 0; next = n;}
}
//...some code
{
Node a = new Node("a", null),
b = new Node("b", a),
c = new Node("c", b);
a.next = c;
} //end of scope
//...other code
a
,b
和c
应该进行垃圾回收,但是它们都被其他对象引用。
Java垃圾回收如何处理呢?(或者仅仅是内存消耗?)