Saved Bookmarks
| 1. |
What Are Three Ways In Which A Thread Can Enter The Waiting State? |
|
Answer» A THREAD can enter the waiting state by INVOKING its sleep() method, by blocking on I/O, by unsuccessfully attempting to acquire an object's LOCK, or by invoking an object's wait() method. It can ALSO enter the waiting state by invoking its (deprecated) SUSPEND() method. A thread can enter the waiting state by invoking its sleep() method, by blocking on I/O, by unsuccessfully attempting to acquire an object's lock, or by invoking an object's wait() method. It can also enter the waiting state by invoking its (deprecated) suspend() method. |
|