本文介绍了如何杀死这个线程,你能解释一下创建和退出线程吗?我正在研究VC ++,Windows线程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

HANDLE ghThread;
DWORD   dwThreadID;

 ghThread = CreateThread(
            NULL,                                                                  // default security
            0,                                                                        // default stack size
            (LPTHREAD_START_ROUTINE)ThreadProc,         // name of the thread function
            this,                                                                  //  thread parameters
            0,                                                                     // default startup flags
            &dwThreadID);





如何杀死这个帖子,你能解释一下创建和退出线程吗? 。



请为退出线程编写代码片段。



How to kill this thread, Can you explain create and exit thread.

Please write the code snippet for exiting thread.

推荐答案




这篇关于如何杀死这个线程,你能解释一下创建和退出线程吗?我正在研究VC ++,Windows线程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 05:22