PR、PRが指すオブジェクトO、およびPR用に設定されたRQがあります。RQをポーリングし続けるスレッドがあり、RQで最初に見つかった参照で、スレッドはそれを見つけた時刻を出力して終了します。
物事は正常に機能しますが、Oがファイナライズを行うと(どんなに些細なことでも)、スレッドはRQで参照を検出しなくなり、無期限に実行を続けます。
質問:なぜそれがこのように起こるのですか?私はSunJDK1.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
のSOPのコメントを外すだけfinalize()
ですGCPhantomObject
。