可以检索 C++11 中线程函数的 return 值吗?

Can one retrieve the return value of a thread function in C++11?

如果一个函数有一个非空的 return 值,我使用 .join 函数加入它,那么有什么方法可以检索它的 return 值吗?

这是一个简化的例子:

float myfunc(int k)
{
  return exp(k);
}

int main()
{
  std::thread th=std::thread(myfunc, 10);

  th.join();

  //Where is the return value?
}

您可以按照此示例代码从线程中获取 return 值:-

int main()
{
  auto future = std::async(func_1, 2);          

  //More code later

  int number = future.get(); //Whole program waits for this

  // Do something with number

  return 0;
}

简而言之,.get() 获取return值,然后您可以类型转换并使用它。

我自己的解决方案:

#include <thread>
void function(int value, int *toreturn)
{
 *toreturn = 10;
}

int main()
{
 int value;
 std::thread th = std::thread(&function, 10, &value);
 th.join();
}