在C語言中,可以使用多線程來實現兩個函數的并行執行。在使用多線程之前,需要包含頭文件<pthread.h>
,并使用pthread_create()
函數創建新的線程。以下是一個簡單的示例代碼:
#include <stdio.h>
#include <pthread.h>
void* func1(void* arg) {
for (int i = 0; i < 5; i++) {
printf("Function 1: %d\n", i);
}
return NULL;
}
void* func2(void* arg) {
for (int i = 0; i < 5; i++) {
printf("Function 2: %d\n", i);
}
return NULL;
}
int main() {
pthread_t thread1, thread2;
pthread_create(&thread1, NULL, func1, NULL);
pthread_create(&thread2, NULL, func2, NULL);
pthread_join(thread1, NULL);
pthread_join(thread2, NULL);
return 0;
}
在上面的代碼中,我們定義了兩個函數func1
和func2
,分別用來執行不同的任務。在main
函數中,我們使用pthread_create()
函數創建了兩個新線程,分別執行func1
和func2
函數。最后,使用pthread_join()
函數等待兩個線程執行完畢。
需要注意的是,多線程的使用需要注意線程之間的同步和互斥,以避免出現競爭條件和死鎖等問題。