如何在C++
. Posix
我们有pthread_detach(pthread_self());
. 如何在 Windows 环境中实现这一点。
问问题
6443 次
1 回答
12
假设您正在使用_beginthreadex或CreateThread
创建线程,您只需要使用CloseHandle关闭线程句柄。
于 2012-10-05T12:15:35.303 回答