Tuesday, March 27, 2007

Important facts of Threads

* Each thread will start, and each thread will run to completion.
* A thread is done being a thread when its target run() method completes.
* Once a thread has been started, it can never be started again.
* The order in which runnable threads are chosen to run is not guaranteed.

No comments: