线程中join()和detach()的区别
参考
1)C++11 concurrent progamming (1) join/detach
2)c++多线程编程:join()函数与detch()函数的区别。
区别
#include<iostream>
#include<thread>
using namespace std;
void function_1()
{
std::cout << "Hello,world!" << std::endl;
}
int main() {
std::threa
原创
2020-10-04 21:00:18 ·
3986 阅读 ·
0 评论