在C语言中,可以使用pthread库来实现多线程并行。
#include <pthread.h>
int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine) (void *), void *arg);
thread:用于存储新创建线程的线程ID。
attr:线程的属性,可以设置为NULL。
start_routine:线程要执行的函数,该函数的返回值和参数类型都必须为void *。
arg:传递给线程函数的参数。
void *thread_function(void *arg) {
// 线程要执行的任务
return NULL;
}
int main() {
pthread_t thread;
int ret = pthread_create(&thread, NULL, thread_function, NULL);
if (ret != 0) {
printf("创建线程失败\n");
return 1;
}
// 主线程的任务
pthread_exit(NULL);
}
int pthread_join(pthread_t thread, void **value_ptr);
thread:要等待的线程ID。
value_ptr:用于存储被等待线程的返回值。
gcc -o program program.c -lpthread
以上是一个简单的多线程并行的实现示例。需要注意的是,多线程并行的具体实现还需要考虑线程之间的同步和互斥问题,以及如何处理线程的返回值等。