Is it ok to destroy a std::promise before future.get() is called?(是否可以在调用future.get()之前销毁std::Promise?)
问题描述
我想知道是否可以调用promise.get_Future(),将那个未来移到其他地方(例如,移到一个向量中),甚至在调用future.get()之前就让承诺消亡。在下面的示例中,调用gateway->refreshWithCallback
在线程中执行lambda,以便共享指针可以将Promise设置为释放,即使在第二个循环中还没有调用future.get(),这似乎是有效的,但我感到不安!
std::vector<std::future<bool>> futures;
for(GuiGateway *gateway : gateways){
std::shared_ptr<std::promise<bool>> shared_promise_ptr(new std::promise<bool>());
futures.push_back(shared_promise_ptr.get()->get_future());
gateway->refreshWithCallback([shared_promise_ptr](bool success){
shared_promise_ptr.get()->set_value(success);
});
}
qDebug() << "waiting for futures";
for(std::future<bool> &future : futures){
if(future.get() == false){
qDebug() << "error retrieving all gateway data, aborting auto config";
return;
}
}
推荐答案
如果您在销毁std::promise
之前向提供了一个值,关联的std::future
将能够很好地检索它。它不依赖于仍然存在的std::promise
。如果在销毁std::promise
之前未能为std::promise
提供值,则尝试从std::future
获取结果将引发std::future_error
,但它也定义良好。
这篇关于是否可以在调用future.get()之前销毁std::Promise?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否可以在调用future.get()之前销毁std::Promise?
基础教程推荐
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- C++,'if' 表达式中的变量声明 2021-01-01