导入头文件
#include <thread>
具体应用
std::thread t1(&ClassName::func,this,p1,p2,....);//依次传入函数地址,对象指针,函数参数
t1.join();//主线程等待子线程运行完成
#include <thread>
std::thread t1(&ClassName::func,this,p1,p2,....);//依次传入函数地址,对象指针,函数参数
t1.join();//主线程等待子线程运行完成