From JQplus
Assume that the class compiles fine.
What will happen if a Worker object is created and it's start method is called?
The answer is "nothing will be printed."
But I think we are creating here a new worker object and will be calling its start() method that will call the
run() method and it will print Working .. once?
I don't understand that here we are creating here another
thread inside the start method?
[ June 11, 2002: Message edited by: swati gupta ]