Re: How can you make a thread of Thread Object?
Posted By:
Simon_Ablett
Posted On:
Thursday, May 6, 2004 03:03 AM
When you call the 'start' method of the Thread class the JVM creates a new concurrent flow of control (usually in conjunction with the undelying operating system unless you are using green threads).
Regards.