有时我必须使用它std::thread
来加速我的应用程序。我也知道join()
等到一个线程完成。detach()
这很容易理解,但是调用和不调用有什么区别呢?
我认为没有detach()
,线程的方法将独立使用线程工作。
不分离:
void Someclass::Somefunction() {
//...
std::thread t([ ] {
printf("thread called without detach");
});
//some code here
}
使用分离调用:
void Someclass::Somefunction() {
//...
std::thread t([ ] {
printf("thread called with detach");
});
t.detach();
//some code here
}