我把自己与未来和承诺之间的区别混为一谈。
显然,他们有不同的方法和东西,但实际的用例是什么?
是吗?:
答案 0 :(得分:150)
Future和Promise是异步操作的两个独立方面。
std::promise
由异步操作的“生产者/编写者”使用。
std::future
由异步操作的“使用者/读者”使用。
将它分成这两个独立的“接口”的原因是隐藏“消费者/读者”中的“写入/设置”功能。
auto promise = std::promise<std::string>();
auto producer = std::thread([&]
{
promise.set_value("Hello World");
});
auto future = promise.get_future();
auto consumer = std::thread([&]
{
std::cout << future.get();
});
producer.join();
consumer.join();
使用std :: promise实现std :: async的一种(不完整的)方法可能是:
template<typename F>
auto async(F&& func) -> std::future<decltype(func())>
{
typedef decltype(func()) result_type;
auto promise = std::promise<result_type>();
auto future = promise.get_future();
std::thread(std::bind([=](std::promise<result_type>& promise)
{
try
{
promise.set_value(func()); // Note: Will not work with std::promise<void>. Needs some meta-template programming which is out of scope for this question.
}
catch(...)
{
promise.set_exception(std::current_exception());
}
}, std::move(promise))).detach();
return std::move(future);
}
在std::packaged_task
周围使用std::promise
作为助手(即它基本上就是我们上面所做的)你可以做以下更完整,可能更快的事情:
template<typename F>
auto async(F&& func) -> std::future<decltype(func())>
{
auto task = std::packaged_task<decltype(func())()>(std::forward<F>(func));
auto future = task.get_future();
std::thread(std::move(task)).detach();
return std::move(future);
}
请注意,这与std::async
略有不同,其中返回的std::future
在破坏时实际阻塞,直到线程完成。