溫馨提示×

C++中beginthreadex怎么使用

小億
118
2023-08-09 09:12:54
欄目: 編程語言

在C++中,_beginthreadex函數(shù)可以用于創(chuàng)建一個新的線程。

首先,需要包含頭文件process.h,然后調(diào)用_beginthreadex函數(shù)來創(chuàng)建線程。

函數(shù)原型如下:

unsigned int _beginthreadex(
void *security,
unsigned stack_size,
unsigned ( __stdcall *start_address )( void * ),
void *arglist,
unsigned initflag,
unsigned *thrdaddr
);

參數(shù)說明:

  • security: 用于指定線程的安全屬性,默認設置為 NULL

  • stack_size: 指定線程的堆棧大小,可以設置為 0 以使用默認值。

  • start_address: 指定線程函數(shù)的地址。

  • arglist: 傳遞給線程函數(shù)的參數(shù),可以是一個指針。

  • initflag: 控制線程的創(chuàng)建標志,默認設置為 0。

  • thrdaddr: 用于存儲新線程的標識符,可以為 NULL。

下面是一個使用_beginthreadex函數(shù)創(chuàng)建一個新線程的示例代碼:

#include <iostream>
#include <process.h>
unsigned __stdcall MyThreadFunc(void* data)
{
int* num = static_cast<int*>(data);
std::cout << "Thread started with data: " << *num << std::endl;
// 執(zhí)行線程的任務
// ...
_endthreadex(0); // 結束線程
return 0;
}
int main()
{
int threadData = 1234;
unsigned threadID;
uintptr_t handle = _beginthreadex(NULL, 0, &MyThreadFunc, &threadData, 0, &threadID);
if (handle != -1)
{
std::cout << "Thread created with ID: " << threadID << std::endl;
// 等待線程結束
WaitForSingleObject((HANDLE)handle, INFINITE);
CloseHandle((HANDLE)handle);
}
else
{
std::cout << "Failed to create thread." << std::endl;
}
return 0;
}

在示例中,MyThreadFunc 函數(shù)是新線程的入口點函數(shù),接收一個指針作為參數(shù)。在主函數(shù)中,使用_beginthreadex函數(shù)創(chuàng)建一個新線程,并傳遞threadData作為參數(shù)。創(chuàng)建成功后,可以使用WaitForSingleObject函數(shù)等待線程結束,然后關閉線程句柄。

需要注意的是,_beginthreadex函數(shù)返回的線程句柄需要使用CloseHandle函數(shù)顯式地關閉,以避免資源泄露。

0