After
{
Thread t = new Thread();
t.start();
}
is the Thread object a candidate for the GC?
|
After
is the Thread object a candidate for the GC? |
|||||
|
|
If it's started, it's not eligible for GC - the code that's running can ask for If you just created it but didn't start it, like this:
then I suspect it would be eligible for GC - but it's pretty unusual to create a thread without starting it. (I guess an exception could be thrown before you got round to starting it...) |
|||||||||||
|
|
No, its not eligible for Garbage Collection. Since, the thread is scheduled in the runnable queue by the Thread Scheduler( after calling One of the methods to check if the thread is still running or not is to call
The When the thread stops or end's its lifecycle or is not yet scheduled to run (like Jon's Code Snippet), then it's eligible for GC. |
||||
|
|
You only need to protect a Thread if you want to retain it after it has finished. It cannot be GC'ed while it is running (or anything the Thread uses) |
|||
|
|