文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

如何用_beginthreadex()创建线程

2023-06-22 07:04

关注

这篇文章主要讲解了“如何用_beginthreadex()创建线程”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“如何用_beginthreadex()创建线程”吧!

一、使用_beginthreadex()             

需要的头文件支持#include         // for _beginthread()
需要的设置:ProjectàSetting-->C/C++-->User run-time library 选择Debug Multithreaded 或者Multithreaded。即使用: MTMTD

代码如下:     
 

#include <stdio.h>#include <string>             // for STL string class#include <windows.h>          // for HANDLE#include <process.h>          // for _beginthread()using namespace std;class ThreadX{private:  int loopStart;  int loopEnd;  int dispFrequency;public:  string threadName;  ThreadX( int startValue, int endValue, int frequency )  {    loopStart = startValue;    loopEnd = endValue;    dispFrequency = frequency;  }  static unsigned __stdcall ThreadStaticEntryPoint(void * pThis)  {      ThreadX * pthX = (ThreadX*)pThis;   // the tricky cast      pthX->ThreadEntryPoint();           // now call the true entry-point-function      return 1;                              // the thread exit code  }  void ThreadEntryPoint()  {    for (int i = loopStart; i <= loopEnd; ++i)    {      if (i % dispFrequency == 0)      {          printf( "%s: i = %d\n", threadName.c_str(), i );      }    }    printf( "%s thread terminating\n", threadName.c_str() );  }};int main(){    ThreadX * o1 = new ThreadX( 0, 1, 2000 );    HANDLE   hth2;    unsigned  uiThread1ID;    hth2 = (HANDLE)_beginthreadex( NULL,         // security                                   0,            // stack size                                   ThreadX::ThreadStaticEntryPoint,                                   o1,           // arg list                                   CREATE_SUSPENDED,  // so we can later call ResumeThread()                                   &uiThread1ID );    if ( hth2 == 0 )        printf("Failed to create thread 1\n");    DWORD   dwExitCode;    GetExitCodeThread( hth2, &dwExitCode );  // should be STILL_ACTIVE = 0x00000103 = 259    printf( "initial thread 1 exit code = %u\n", dwExitCode );    o1->threadName = "t1";    ThreadX * o2 = new ThreadX( -100000, 0, 2000 );    HANDLE   hth3;    unsigned  uiThread2ID;    hth3 = (HANDLE)_beginthreadex( NULL,         // security                                   0,            // stack size                                   ThreadX::ThreadStaticEntryPoint,                                   o2,           // arg list                                   CREATE_SUSPENDED,  // so we can later call ResumeThread()                                   &uiThread2ID );    if ( hth3 == 0 )        printf("Failed to create thread 2\n");    GetExitCodeThread( hth3, &dwExitCode );  // should be STILL_ACTIVE = 0x00000103 = 259    printf( "initial thread 2 exit code = %u\n", dwExitCode );    o2->threadName = "t2";    ResumeThread( hth2 );   // serves the purpose of Jaeschke's t1->Start()    ResumeThread( hth3 );       WaitForSingleObject( hth2, INFINITE );    WaitForSingleObject( hth3, INFINITE );    GetExitCodeThread( hth2, &dwExitCode );    printf( "thread 1 exited with code %u\n", dwExitCode );    GetExitCodeThread( hth3, &dwExitCode );    printf( "thread 2 exited with code %u\n", dwExitCode );    CloseHandle( hth2 );    CloseHandle( hth3 );    delete o1;    o1 = NULL;    delete o2;    o2 = NULL;    printf("Primary thread terminating.\n");    return 0;}

注意:

二、_beginthreadex()与代CreateThread()区别                                   

CreateThread是Windows的API函数(SDK函数的标准形式,直截了当的创建方式,任何场合都可以使用),提供操作系统级别的创建线程的操作,且仅限于工作者线程。不调用MFC和RTL的函数时,可以用CreateThread,其它情况不要轻易。在使用的过程中要考虑到进程的同步与互斥的关系(防止死锁)。线程函数定义为:DWORD WINAPI _yourThreadFun(LPVOID pParameter)。但它没有考虑:

AfxBeginThread:MFC中线程创建的MFC函数,首先创建了相应的CWinThread对象,然后调用CWinThread::CreateThread,   在CWinThread::CreateThread中,完成了对线程对象的初始化工作,然后,调用_beginthreadex(AfxBeginThread相比较更为安全)创建线程。它简化了操作或让线程能够响应消息,即可用于界面线程,也可以用于工作者线程,但要注意不要在一个MFC程序中使用_beginthreadex()或CreateThread()。线程函数定义为:UINT
_yourThreadFun(LPVOID pParam)

_beginthreadex:MS对C Runtime库的扩展SDK函数,首先针对C Runtime库做了一些初始化的工作,以保证C Runtime库工作正常。然后,调用CreateThread真正创建线程。 仅使用Runtime Library时,可以用_BegingThread。

_beginthreadex_beginthread在回调入口函数之前进行一些线程相关的CRT的初始化操作。
CRT的函数库在线程出现之前就已经存在,所以原有的CRT不能真正支持线程,
这也导致了许多CRT的函数在多线程的情况下必须有特殊的支持,不能简单的使用CreateThread就OK。
 

补充一点:_beginthreadex()是针对CRT的线程函数,在线程中若要用到CRT的函数,最好用这个启动线程,如果不用这个会有内存泄漏。

感谢各位的阅读,以上就是“如何用_beginthreadex()创建线程”的内容了,经过本文的学习后,相信大家对如何用_beginthreadex()创建线程这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯