上一篇
如何理解并编写高效的C语言多线程源代码?
- 行业动态
- 2024-10-02
- 1
多线程源码通常涉及使用特定编程语言的线程库,如Python的
threading
模块或Java的
java.lang.Thread
类。
#include <stdio.h> #include <stdlib.h> #include <pthread.h> // 线程函数 void *print_hello(void *arg) { int thread_id = *((int *)arg); printf("Hello from thread %d! ", thread_id); pthread_exit(NULL); } int main() { int num_threads = 5; // 线程数量 pthread_t threads[num_threads]; // 线程ID数组 int thread_ids[num_threads]; // 线程ID数组 // 创建线程 for (int i = 0; i < num_threads; i++) { thread_ids[i] = i; int rc = pthread_create(&threads[i], NULL, print_hello, (void *)&thread_ids[i]); if (rc) { printf("Error: Unable to create thread, %d ", rc); exit(1); } } // 等待所有线程结束 for (int i = 0; i < num_threads; i++) { pthread_join(threads[i], NULL); } printf("All threads have finished. "); pthread_exit(NULL); }
以上就是关于“c 多线程源码”的问题,朋友们可以点击主页了解更多内容,希望可以够帮助大家!
本站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本站,有问题联系侵删!
本文链接:http://www.xixizhuji.com/fuzhu/10878.html