notify_one()和notify_all()
时间: 2023-04-29 16:06:48 浏览: 116
Java 中Object的wait() notify() notifyAll()方法使用
notify_one()和notify_all()是C++中多线程编程的两个方法。它们用于唤醒在等待某个条件变量的线程。其中,notify_one()会随机唤醒一个等待线程,而notify_all()会唤醒所有等待线程。
阅读全文
Java 中Object的wait() notify() notifyAll()方法使用