Java: Why does this not get garbage collected?

前端 未结 4 1193
粉色の甜心
粉色の甜心 2021-01-03 18:39

Quick question about the theory of GCing. I have the following method. It runs, and exits the method. How come even after GC is run, the timer still exists and keeps \"TI

相关标签:
4条回答
  • 2021-01-03 19:14

    The Timer object actually schedules tasks to be executed in a background thread, so that background thread maintains a reference to the Timer (and the TimerTask), which prevents both from being garbage-collected.

    Here is the appropriate quote from the docs:

    After the last live reference to a Timer object goes away and all outstanding tasks have completed execution, the timer's task execution thread terminates gracefully (and becomes subject to garbage collection). However, this can take arbitrarily long to occur. By default, the task execution thread does not run as a daemon thread, so it is capable of keeping an application from terminating. If a caller wants to terminate a timer's task execution thread rapidly, the caller should invoke the the timer's cancel method.

    So the condition that "all outstanding tasks have completed execution" is not satisfied, and the thread never terminates, so the Timer/TimerTask is never GC'd.

    0 讨论(0)
  • 2021-01-03 19:20

    Because a Timer has a background thread that continues running:

    Corresponding to each Timer object is a single background thread that is used to execute all of the timer's tasks, sequentially. Timer tasks should complete quickly. If a timer task takes excessive time to complete, it "hogs" the timer's task execution thread. This can, in turn, delay the execution of subsequent tasks, which may "bunch up" and execute in rapid succession when (and if) the offending task finally completes.

    Since it's a background thread, it continues until the JVM exits or it's stopped.

    Update: a little more on this. A "background thread" is the same thing as a daemon thread -- named by analogy with a BSD daemon process. If you see the javadocs on Thread, you'll find:

    Marks this thread as either a daemon thread or a user thread. The Java Virtual Machine exits when the only threads running are all daemon threads.

    When your main terminates, all the user threads stop, leaving only daemon threads. The JVM then shuts down. For a good time — if short — call Thread.currentThread().setDaemon(true); from main.

    Update: Ack. I had that almost right. You have to make the timer a daemon at construction time. (Did this change, or did I just have a brain failure?)

    Anyway, here's example code:

    import java.util.*;
    
    class Chatter extends TimerTask {
        public void run(){
            System.err.println("Timer run.");
        }
    }
    
    public class TryThread {
        public static void main(String[] argv){
            // If argument is true, only runs a few times.
            Timer t = new Timer(false);
            t.schedule(new Chatter(), 1L, 1L);
            return ;
        }
    }
    
    0 讨论(0)
  • 2021-01-03 19:20

    The timer's not being garbage collected because it's still running -- some other object (such as the thread scheduler) still has a reference to it, which was probably created inside scheduleAtFixedRate().

    0 讨论(0)
  • 2021-01-03 19:20

    How do you know the GC ran? Garbage collection in general is not a deterministic thing, and it's definitely not triggered by method scope. It's not like C++ where you leave scope of a function and destructors fire. It will get around to collecting that memory if and when the GC feels like it.

    0 讨论(0)
提交回复
热议问题