启动程序后我有这段代码:
#include <thread>
using namespace std;
thread _thread;
我想稍后设置变量_thread
并调用sayHello
函数。我怎么能这样做?
void sayHello() {
//some hello code :-)
}
当然,我可以致电thread _someName(sayHello);
,但我希望稍后再打电话给“开始线程”。
感谢您的帮助。
轻松:
thread _thread;
_thread = //how to start ?