CreateThread函数是Windows操作系统提供的用于创建线程的函数,在C语言中使用。
其函数原型为:
HANDLE CreateThread(
LPSECURITY_ATTRIBUTES lpThreadAttributes,
SIZE_T dwStackSize,
LPTHREAD_START_ROUTINE lpStartAddress,
LPVOID lpParameter,
DWORD dwCreationFlags,
LPDWORD lpThreadId
);
参数说明:
CreateThread函数返回一个线程的句柄(HANDLE类型),可以通过此句柄对线程进行操作。
使用CreateThread函数创建线程的基本步骤如下:
示例代码:
#include <stdio.h>
#include <windows.h>
DWORD WINAPI threadFunc(LPVOID lpParam) {
printf("Hello from thread!\n");
return 0;
}
int main() {
HANDLE hThread;
DWORD threadId;
hThread = CreateThread(NULL, 0, threadFunc, NULL, 0, &threadId);
if (hThread == NULL) {
printf("Failed to create thread.\n");
return 1;
}
printf("Thread created with ID: %d\n", threadId);
// ... 其他操作
WaitForSingleObject(hThread, INFINITE);
CloseHandle(hThread);
return 0;
}
以上示例代码中,调用CreateThread函数创建了一个线程,并通过WaitForSingleObject函数等待线程结束。