Object 对象的方法
Causes the current thread to wait until it is awakened, typically by being notified or
interrupted.
public final void notifyAll()
Wakes up all threads that are waiting on this object's monitor. A thread waits on an
object's monitor by calling one of the wait methods.
The awakened threads will not be able to proceed until the current thread relinquishes the
lock on this object. The awakened threads will compete in the usual manner with any other
threads that might be actively competing to synchronize on this object; for example, the
awakened threads enjoy no reliable privilege or disadvantage in being the next thread to
lock this object.
This method should only be called by a thread that is the owner of this object's monitor.