如何将未来转变为lambda表达式

时间:2016-06-14 10:35:44

标签: c++ c++11 lambda move future

我正在使用Visual Studio 2013,我希望实现这一行代码

 f = p.get_future();
 auto task =[f = std::move(f)](){
   //use f
 };

我知道解决方案 here,但不幸的是,这不能在VS2013(error C2558 no copy-constructor available)下编译。

1 个答案:

答案 0 :(得分:3)

您可以使用shared_future。这是最简单的。

然而,这并不能帮助你移动。如果你真的需要移动,我们可以借助move_helper函数和类来完成:

template<class T, class F=void>
struct move_helper_t {
  T t;
  F f;
  template<class...Args>
  auto operator()(Args&&...args)
  ->typename std::result_of< F&(T&, Args...) >::type
  {
    return f(t, std::forward<Args>(args)...);
  }

  // force right-associativity of `->*`, and
  // invert the stack to get the arguments in the "right" order:
  template<class F1,
    class R0=move_helper_t< T, typename std::decay<F1>::type >
  >
  auto operator->*(F1&& f1)
  -> decltype(
    std::declval<F>()->*
    std::declval<R0>()
  )
  {
    return
      std::move(f)->*
      R0{ std::forward<T>(t), std::forward<F1>(f1) };
  }
};
template<class T>
struct move_helper_t<T,void> {
  T t;
  template<class F>
  auto operator->*(F&& f)
  -> move_helper_t<T, typename std::decay<F>::type>
  {
    return {std::forward<T>(t), std::forward<F>(f)};
  }
};

template<class T>
move_helper_t<std::decay_t<T>>
move_helper( T&& t ) {
  return {std::forward<T>(t)};
}

在MSVC 2013中,可能必须在move_helper_t中声明构造函数。我不记得他们的return {}代码写得多好。

f = p.get_future();
task =
  move_helper(std::move(f)) ->*
  [](std::future<int>& f){
    //use f
  };

->*move_helper绑定到lambda。然后它返回一个可调用对象,该对象在调用时将作为第一个参数传递std::future<int>&

由于它是如何编写的,你甚至可以链接它:

auto f = p.get_future();
auto f2 = p2.get_future();
task =
  move_helper(std::move(f)) ->*
  move_helper(std::move(f2)) ->*
  [](std::future<int>& f, std::future<char>& f2){
    //use f
  };

将多个参数移入lambda。

在这两种情况下,task都可以调用task() - ->*操作绑定lambda并在调用时传递期货。

Live example

请注意,这解决了将未来转移到lambda的问题。如果你想将lambda存储在std::function中,这个将无法帮助你,因为函数必须是可复制的。

template<class F>
struct shared_function {
  std::shared_ptr<F> pf;
  template<class ...Args>
  typename std::result_of<F&(Args...)>::type
  operator()(Args&&...args) const {
   return (*pf)(std::forward<Args>(args)...);
  }
};
template<class F,
  class dF=typename std::decay<F>::type
>
shared_function< dF >
make_shared_function( F&& f ) {
  return {std::make_shared<dF>(std::forward<F>(f))};
}

这需要一个可移动的lambda并将其包装在共享指针中并为您公开operator()。但是首先通过上述技术将future移动到lambda中,然后将该lambda包装在共享函数中以将其传递给std::function是荒谬的:只需使用shared_future第一名。

顺便一提,理论上,packaged_task只需要移动,但我不确定MSVC2013是否支持该要求。