最简单的 std::thread用法如下,调用 thread将立即同时开始执行这个新建立的线程,新线程的任务执行完毕之后, main()的主线程也会继续执行。 #include<iostream>#include<thread>#include<windows.h>#include<string>usingnamespacestd;voidmyfunc_work(){ cout <<"myfunc_work ..."<< endl;// do something 5sSl...