_beginThreadex创建多线程解读

简介: _beginThreadex创建多线程解读一、需要的头文件支持 #include <process.h> // for _beginthread()需要的设置:ProjectàSetting-->C/C++-->User run-time library 选择Debug Multithreaded 或者Multithreaded。即使用: MT或MTD。

源码如下:

#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   hth1;

   unsigned  uiThread1ID;

 

   hth1 = (HANDLE)_beginthreadex( NULL,         // security

                                  0,            // stack size

                                  ThreadX::ThreadStaticEntryPoint,

                                  o1,           // arg list

                                  CREATE_SUSPENDED,  // so we can later call ResumeThread()

                                  &uiThread1ID );

 

   if ( hth1 == 0 )

       printf("Failed to create thread 1\n");

 

   DWORD   dwExitCode;

   GetExitCodeThread( hth1, &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   hth2;

   unsigned  uiThread2ID;

 

   hth2 = (HANDLE)_beginthreadex( NULL,         // security

                                  0,            // stack size

                                  ThreadX::ThreadStaticEntryPoint,

                                  o2,           // arg list

                                  CREATE_SUSPENDED,  // so we can later call ResumeThread()

                                  &uiThread2ID );

 

   if ( hth2 == 0 )

       printf("Failed to create thread 2\n");

 

   GetExitCodeThread( hth2, &dwExitCode );  // should be STILL_ACTIVE = 0x00000103 = 259

   printf( "initial thread 2 exit code = %u\n", dwExitCode );

 

   o2->threadName = "t2";

 

   ResumeThread( hth1 );   // serves the purpose of Jaeschke's t1->Start()

   ResumeThread( hth2 );    

 

   WaitForSingleObject( hth1, INFINITE );

   WaitForSingleObject( hth2, INFINITE );

 

   GetExitCodeThread( hth1, &dwExitCode );

   printf( "thread 1 exited with code %u\n", dwExitCode );

 

   GetExitCodeThread( hth2, &dwExitCode );

   printf( "thread 2 exited with code %u\n", dwExitCode );

 

   CloseHandle( hth1 );

   CloseHandle( hth2 );

 

   delete o1;

   o1 = NULL;

 

   delete o2;

   o2 = NULL;

 

   printf("Primary thread terminating.\n");

return 0;

}

1.


相关文章
|
13天前
|
NoSQL Redis
单线程传奇Redis,为何引入多线程?
Redis 4.0 引入多线程支持,主要用于后台对象删除、处理阻塞命令和网络 I/O 等操作,以提高并发性和性能。尽管如此,Redis 仍保留单线程执行模型处理客户端请求,确保高效性和简单性。多线程仅用于优化后台任务,如异步删除过期对象和分担读写操作,从而提升整体性能。
37 1
|
3月前
|
存储 消息中间件 资源调度
C++ 多线程之初识多线程
这篇文章介绍了C++多线程的基本概念,包括进程和线程的定义、并发的实现方式,以及如何在C++中创建和管理线程,包括使用`std::thread`库、线程的join和detach方法,并通过示例代码展示了如何创建和使用多线程。
63 1
|
3月前
|
Java 开发者
在Java多线程编程中,创建线程的方法有两种:继承Thread类和实现Runnable接口
【10月更文挑战第20天】在Java多线程编程中,创建线程的方法有两种:继承Thread类和实现Runnable接口。本文揭示了这两种方式的微妙差异和潜在陷阱,帮助你更好地理解和选择适合项目需求的线程创建方式。
41 3
|
3月前
|
Java 开发者
在Java多线程编程中,选择合适的线程创建方法至关重要
【10月更文挑战第20天】在Java多线程编程中,选择合适的线程创建方法至关重要。本文通过案例分析,探讨了继承Thread类和实现Runnable接口两种方法的优缺点及适用场景,帮助开发者做出明智的选择。
28 2
|
3月前
|
Java
Java中多线程编程的基本概念和创建线程的两种主要方式:继承Thread类和实现Runnable接口
【10月更文挑战第20天】《JAVA多线程深度解析:线程的创建之路》介绍了Java中多线程编程的基本概念和创建线程的两种主要方式:继承Thread类和实现Runnable接口。文章详细讲解了每种方式的实现方法、优缺点及适用场景,帮助读者更好地理解和掌握多线程编程技术,为复杂任务的高效处理奠定基础。
45 2
|
3月前
|
Java 开发者
Java多线程初学者指南:介绍通过继承Thread类与实现Runnable接口两种方式创建线程的方法及其优缺点
【10月更文挑战第20天】Java多线程初学者指南:介绍通过继承Thread类与实现Runnable接口两种方式创建线程的方法及其优缺点,重点解析为何实现Runnable接口更具灵活性、资源共享及易于管理的优势。
52 1
|
3月前
|
安全 Java 开发者
Java多线程中的`wait()`、`notify()`和`notifyAll()`方法,探讨了它们在实现线程间通信和同步中的关键作用
本文深入解析了Java多线程中的`wait()`、`notify()`和`notifyAll()`方法,探讨了它们在实现线程间通信和同步中的关键作用。通过示例代码展示了如何正确使用这些方法,并分享了最佳实践,帮助开发者避免常见陷阱,提高多线程程序的稳定性和效率。
57 1
|
3月前
|
Java
在Java多线程编程中,`wait()` 和 `notify()/notifyAll()` 方法是线程间通信的核心机制。
在Java多线程编程中,`wait()` 和 `notify()/notifyAll()` 方法是线程间通信的核心机制。它们通过基于锁的方式,使线程在条件不满足时进入休眠状态,并在条件成立时被唤醒,从而有效解决数据一致性和同步问题。本文通过对比其他通信机制,展示了 `wait()` 和 `notify()` 的优势,并通过生产者-消费者模型的示例代码,详细说明了其使用方法和重要性。
51 1
|
2月前
|
数据采集 Java Python
爬取小说资源的Python实践:从单线程到多线程的效率飞跃
本文介绍了一种使用Python从笔趣阁网站爬取小说内容的方法,并通过引入多线程技术大幅提高了下载效率。文章首先概述了环境准备,包括所需安装的库,然后详细描述了爬虫程序的设计与实现过程,包括发送HTTP请求、解析HTML文档、提取章节链接及多线程下载等步骤。最后,强调了性能优化的重要性,并提醒读者遵守相关法律法规。
70 0
|
3月前
|
存储 前端开发 C++
C++ 多线程之带返回值的线程处理函数
这篇文章介绍了在C++中使用`async`函数、`packaged_task`和`promise`三种方法来创建带返回值的线程处理函数。
102 6