我有一个 PR,一个 PR 指向的对象 O,以及一个为 PR 设置的 RQ。我有一个线程不断轮询 RQ,并且在它在 RQ 中找到的第一个引用时,线程打印它找到它的时间,然后退出。
一切正常,但是当 O 完成最终确定(无论多么微不足道)时,线程不再在 RQ 中找到引用并无限期地继续运行。
问题:为什么会这样?我正在使用 Sun JDK 1.6。
这是代码:
good case
public class MyGCPhantom
{
public static void main(String[] args) throws InterruptedException
{
GCPhantomObject p = new GCPhantomObject();
ReferenceQueue phantomQueue = new ReferenceQueue();
PhantomReference<GCPhantomObject> pr = new PhantomReference<GCPhantomObject>(p, phantomQueue);
new GCPhantomThread(phantomQueue, "Phantom").start();
p = null;
System.gc();
}
}
class GCPhantomObject
{
@Override
protected void finalize()
{
//System.out.println("GCPhantom finalized " + System.currentTimeMillis());
}
}
class GCPhantomThread extends Thread
{
private ReferenceQueue referenceQueue;
private String name;
GCPhantomThread(ReferenceQueue referenceQueue, String name)
{
this.referenceQueue = referenceQueue;
this.name = name;
}
@Override
public void run()
{
while(referenceQueue.poll() == null);
System.out.println(name + " found at " + System.currentTimeMillis());
}
}
bad case
只需取消注释 中的 SOPfinalize()
即可GCPhantomObject
。