What the difference is between notify and notify All methods?

Submitted by: Administrator
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.
Submitted by: Administrator

Read Online Java Multi-Threading Job Interview Questions And Answers