Java Multi-Threading Question:
What the difference is between notify and notify All methods?
Answer:
The notify will run only first thread which has called wait() on same object. i.e. the object which has called the wait() must be the same as the object that calls
The notifyAll will run all threads which has called wait() on same object.
While using notifyAll the highest priority thread will run first.
The notifyAll will run all threads which has called wait() on same object.
While using notifyAll the highest priority thread will run first.
Previous Question | Next Question |
Explain some ways in which a thread can enter the waiting state? | Explain the difference between yielding and sleeping? |