A Thread is considered to be dead when it is done with its run() method, once done, a Thread can not be brought back to life
i.e., we can not call a start() method on a given Thread object for the second time(i.e., we can not create a spearate call Stack agian)
but a Thread object is a normal object like any other object in java, we can still call methods on it. what we can not do is call start() again(i.e., we can not create a separate process again)
__________________
Cheers
Wizkid
|