View Single Post
  #3 (permalink)  
Old 05-02-2008, 07:49 PM
wizkid wizkid is offline
Junior Member
 
Join Date: Apr 2008
Posts: 10
Default



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
Reply With Quote