在下面的代碼中,有多少對象在執行第7行後有資格進行垃圾回收? 在我看來,1個是z的對象是符合條件的。是對的?關於垃圾回收的困惑
public class Tester
{
public static void main(String[] args)
{
Integer x = new Integer(3000);
Integer y = new Integer(4000);
Integer z = new Integer(5000);
Object a = x;
x = y;
y = z;
z = null; //line 7
}
}
非常感謝。