在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
以上是一個簡單的多線程并行的實現示例。需要注意的是,多線程并行的具體實現還需要考慮線程之間的同步和互斥問題,以及如何處理線程的返回值等。