c/c++中主线程退出,子线程也会退出

时间:2022-04-28 14:57:42
 #include <windows.h>
#include <process.h> /* _beginthread, _endthread */
#include <iostream> using namespace std; void show(void *ptr); int main(){
_beginthread(show, , NULL);  //创建一个子线程
Sleep();
return ;
} void show(void *ptr){
int i = ;
cout<<"i am in"<<endl;
while(true){
cout<<"i = "<<i++<<endl;
Sleep();
} }

c/c++中主线程退出,子线程也会退出

主线程睡眠10s中,子线程每隔1s向控制台输出I。可以看到10s过后子线程不在输出信息,子线程随主线程的退出而退出