作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我什么时候必须使用std::promise::set_value_at_thread_exit
/std::promise::set_exception_at_thread_exit
在 std::promise::set_value
/std::promise::set_exception
?
唯一的区别是,只有调用线程的 thread_local
被销毁后,前者才能保证使关联的 future 就绪。然而,我想不出任何非合成的例子,这将是有用的。
最佳答案
当您的程序仍处于它想知道的状态时,可能会知道分离的线程是否已完成运行。
关于c++ - std::promise::set_{value|exception}_at_thread_exit 的用例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42903365/
假设我的应用程序中有两个线程,我需要在另一个线程退出时通知我的主线程。 我知道 C++11 提供了 std::notify_all_at_thread_exit(),或者 std::promise::
我什么时候必须使用std::promise::set_value_at_thread_exit/std::promise::set_exception_at_thread_exit在 std::pro
我是一名优秀的程序员,十分优秀!