C语言中线程的创建方式有以下几种:
#include <pthread.h>
void* thread_func(void* arg) {
// 线程执行的代码
}
int main() {
pthread_t thread;
pthread_create(&thread, NULL, thread_func, NULL);
// ...
return 0;
}
#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语言线程创建方式,具体选择哪种方式取决于开发环境和需求。