标签: c++ windows multithreading
如何在C++中的窗口上分离线程。在Posix我们pthread_detach(pthread_self());。如何在windows环境中实现这一点。
C++
Posix
pthread_detach(pthread_self());
答案 0 :(得分:10)
假设您使用_beginthreadex或CreateThread创建线程,您只需使用CloseHandle关闭线程句柄。
CreateThread