The wait() and notify() methods are object-specific. The wait() method suspends the current thread of execution, and tells the object to keep track of the suspended thread. The notify() method tells t...
wait(), notify() and notifyAll() are in Object class because the lock for these are set on a object and these can be called on any object. Any threads accessing the object will be put into wait status...