Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的线程作为链表运行(有重叠,因此有线程),实现了与时间线没有什么不同的东西。每个条件变量解锁链表中的下一个线程。
我应该使用notify_all()还是notify_one()当我只有一个要通知时?
notify_all()
notify_one()
notify_one除非您的代码更易于阅读,否则请使用notify_all(例如,您构建了一个恰好包含一个元素的列表)。
notify_one
notify_all