posted 23 years ago
Regardless if a thread is running or not, if the number of references to that object is equal to or greater than 1, then it wont be a candidate for garbage collection.
After a thread returns from its run() method, it does not get destroyed by any means. It's still an object whose methods and attributes can be accessed by other objects.
SAF