如何在 Windows C++ 上分离线程
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/12744324/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How to detach a thread on Windows C++
提问by Avinash
How to detach a thread on windows in C++. On Posixwe have pthread_detach(pthread_self());. How to achieve this in windows enviornment.
如何在C++. 在Posix我们有pthread_detach(pthread_self());。如何在 windows 环境中实现这一点。
回答by cmeerw
Assuming that you are using _beginthreadexor CreateThreadto create the thread, you just need to close the thread handle using CloseHandle.
假设您正在使用_beginthreadex或CreateThread创建线程,您只需要使用CloseHandle关闭线程句柄。

