Java Programming - The Thread instance life-cycle
Hi, I am puzzled about the Thread instace life-cycle in my code:
publicclass LinkPool{
...
publicvoid initial(int size)
{
while(...)
...
Thread link =new Thread(runnableImp);
link.start();
linkVector.add(runnableImp);
...
}
...
}
when out of the method initial(), who hold the Thread instance reference? If there is no, will the GC terminate the instance?

