如何在主线程中判断子线程是否结束
发布网友
发布时间:2022-04-25 15:07
我来回答
共1个回答
热心网友
时间:2023-10-11 02:57
参考代码:
C/C++ codeDWORD ExitCode;
::GetExitCodeThread(m_pThread->m_hThread,&ExitCode);
while(ExitCode==STILL_ACTIVE)
{
::GetExitCodeThread(m_pThread->m_hThread,&ExitCode);
}
希望对你有帮助。