如何使用c ++启动空线程

时间:2016-10-06 18:40:23

标签: c++ multithreading threadpool

启动程序后我有这段代码:

#include <thread> 
using namespace std;

thread _thread;

我想稍后设置变量_thread并调用sayHello函数。我怎么能这样做?

void sayHello() {
   //some hello code :-)
}

当然,我可以致电thread _someName(sayHello);,但我希望稍后再打电话给“开始线程”。

感谢您的帮助。

轻松:

thread _thread;
_thread = //how to start ?

0 个答案:

没有答案