调用std::future.get()
后,它将变为无效,因为对future.valid()
的调用将确认。以下代码段将在运行时失败并显示错误[g ++ 4.7.0]:
terminate called after throwing an instance of 'std::future_error'
what(): No associated state
我试图编码 th1 和 th2 的依赖关系,等待 th0 完成。
问题是无法从2个线程调用std::future.get()
。
我可以考虑一些涉及condition_variable
的修复,或通过队列等传达结果。
condition_variable
和notify_all()
? 感谢。
template<typename R>
class scheduler
{
public:
typedef R ret_type;
typedef std::function<R()> fun_type;
typedef std::promise<ret_type> prom_type;
typedef std::future<ret_type> fut_type;
// ...
private:
void init();
...
std::vector<prom_type> prom;
std::vector<fut_type> fut;
...
};
template<typename R>
scheduler<R>::init()
{
// ...
// set fut[i] = prom[i].get_future(), for each i
fun_type f0 = myFun0;
fun_type f1 = myFun1;
fun_type f2 = myFun2;
std::thread th0([this](fun_type f)
{
prom[0].set_value(f0());
},f0)
std:thread th1([this](fun_type f, R fut_val)
{
prom[1].set_value(f1());
},f1,fut[0].get());
std::thread th2([this](fun_type f, R fut_val)
{
prom[2].set_value(f2());
},f2,fut[0].get());
// Join on threads : th0.join(), etc.
}
答案 0 :(得分:6)
您应该考虑使用shared_future
。
类模板std :: shared_future提供了一种访问异步操作结果的机制,类似于std :: future,除了允许多个线程等待相同的共享状态....访问相同的共享如果每个线程通过它自己的shared_future对象副本完成它,那么来自多个线程的状态是安全的。