我的假设是下面packaged_task
有一个promise
。如果我的任务引发异常,我如何将其路由到关联的future
?只需一个promise
我可以调用set_exception
- 我如何为 做同样的事情packaged_task
?
问问题
1250 次
1 回答
12
Anstd::packaged_task
有一个关联的std::future
对象,它将保存异常(或任务的结果)。get_future()
您可以通过调用 的成员函数来检索该未来std::packaged_task
。
这意味着与打包任务关联的函数内部的异常足以让该异常被任务的未来捕获(并在未来对象上调用throw
时重新抛出)。get()
例如:
#include <thread>
#include <future>
#include <iostream>
int main()
{
std::packaged_task<void()> pt([] () {
std::cout << "Hello, ";
throw 42; // <== Just throw an exception...
});
// Retrieve the associated future...
auto f = pt.get_future();
// Start the task (here, in a separate thread)
std::thread t(std::move(pt));
try
{
// This will throw the exception originally thrown inside the
// packaged task's function...
f.get();
}
catch (int e)
{
// ...and here we have that exception
std::cout << e;
}
t.join();
}
于 2013-05-02T18:34:51.437 回答