C语言中线程的创建方式有以下几种:
pthread_create函数:该函数是POSIX标准中用于创建线程的函数。需要包含头文件pthread.h,并传入线程标识符指针、线程属性、线程入口函数以及入口函数的参数。示例代码如下:#include <pthread.h>void* thread_func(void* arg) { // 线程执行的代码}int main() { pthread_t thread; pthread_create(&thread, NULL, thread_func, NULL); // ... return 0;}_beginthread和_beginthreadex函数:这是Windows下用于创建线程的函数。需要包含头文件process.h,并传入线程入口函数以及入口函数的参数。示例代码如下:#include <process.h>unsigned int __stdcall thread_func(void* arg) { // 线程执行的代码 return 0;}int main() { unsigned int thread; _beginthreadex(NULL, 0, thread_func, NULL, 0, &thread); // ... return 0;}创建线程时指定函数指针:使用函数指针来作为线程的入口函数,然后在主函数中通过调用该函数来创建线程。示例代码如下:#include <stdio.h>void thread_func(void* arg) { // 线程执行的代码}int main() { void (*ptr)(void*) = &thread_func; pthread_create(&thread, NULL, ptr, NULL); // ... return 0;}这些都是常见的C语言线程创建方式,具体选择哪种方式取决于开发环境和需求。

