可以在 C++11 中检索线程函数的返回值吗?
Posted
技术标签:
【中文标题】可以在 C++11 中检索线程函数的返回值吗?【英文标题】:Can one retrieve the return value of a thread function in C++11? 【发布时间】:2017-11-17 16:59:35 【问题描述】:如果一个函数有一个非 void 返回值并且我使用 .join
函数加入它,那么有什么方法可以检索它的返回值?
这是一个简化的例子:
float myfunc(int k)
return exp(k);
int main()
std::thread th=std::thread(myfunc, 10);
th.join();
//Where is the return value?
【问题讨论】:
C++: Simple return value from std::thread?的可能重复 【参考方案1】:您可以按照此示例代码从线程中获取返回值:-
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() 获取返回值,然后可以进行类型转换并使用它。
【讨论】:
【参考方案2】:我自己的解决方案:
#include <thread>
void function(int value, int *toreturn)
*toreturn = 10;
int main()
int value;
std::thread th = std::thread(&function, 10, &value);
th.join();
【讨论】:
以上是关于可以在 C++11 中检索线程函数的返回值吗?的主要内容,如果未能解决你的问题,请参考以下文章
如果函数返回多种类型,我可以声明一个函数返回值吗? [复制]