在 C 语言中,可以使用 POSIX 线程(pthread)库来创建和管理线程。下面是一个简单的示例程序,演示如何在 C 语言中使用线程:
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h> void *print_hello(void *thread_id) { printf("Hello from thread %ld\n", (long) thread_id); pthread_exit(NULL);
} int main() { pthread_t thread1, thread2; int rc1, rc2; // 创建两个线程,并指定它们的执行函数 rc1 = pthread_create(&thread1, NULL, print_hello, (void *) 1); rc2 = pthread_create(&thread2, NULL, print_hello, (void *) 2); // 等待两个线程完成执行 pthread_join(thread1, NULL); pthread_join(thread2, NULL); printf("All threads have completed\n"); return 0;
}
在这个示例程序中,我们首先定义了一个 print_hello
函数,它接受一个 void *
类型的参数,用于指定线程的 ID。在这个函数中,我们使用 printf
函数输出一条消息,并调用 pthread_exit
函数结束当前线程的执行。
在 main
函数中,我们使用 pthread_create
函数创建两个线程,并指定它们的执行函数为 print_hello
。该函数的返回值用于指示操作是否成功。我们使用 pthread_join
函数等待两个线程完成执行,并在所有线程完成后输出一条消息。
需要注意的是,使用线程需要遵循一些规则和约定,例如线程之间的同步和互斥问题、线程的调度和优先级问题等。在实际应用中,需要根据具体的需求和场景来设计和实现线程。