View Single Post
  #6 (permalink)  
Old 12-10-2007, 08:24 AM
ingle.anil ingle.anil is offline
Member
 
Join Date: Dec 2007
Posts: 3
ingle.anil is on a distinguished road
sequential execution
thread.start() -- concurrent execution
1)create new thread and
2)then calls run() method.

thread.run() -- sequential execution
1)calls run() method.
- no new Thread creation.
Reply With Quote