3.c #include <stdio.h> #include <stdlib.h> #include <pthread.h> int sum1 = 0, sum2 = 0; void *p1(){ int i, tmp = 0; for (i = 1; i <= 100; i++) tmp += i; sum1 += tmp; } void p2(){ int i, tmp = 0; for (i = 101; i <= 200; i++) tmp += i; sum2 += tmp; } void p3(){ printf("sum: %d\n", sum1 + sum2); } int main(){ int res; pthread_t t; void *thread_result; res = pthread_create(&t, NULL, p1, NULL); if (res != 0){ perror("failed to create thread"); exit(1); } p2(); res = pthread_join(t, &thread_result); if (res != 0){ perror("failed to join thread"); exit(2); } p3(); return 0; } 什么意思
时间: 2024-04-23 08:25:42 浏览: 114
这是一个使用 pthread 线程库的 C 语言程序,它创建了一个线程(p1)和两个函数(p2 和 p3)来计算并输出 1~200 的所有整数之和。在主函数中,它首先创建线程 p1,然后调用函数 p2 来计算 101~200 的整数和,最后等待线程 p1 执行完成后,调用函数 p3 来输出总和。需要注意的是,sum1 和 sum2 是在主函数和线程函数之间共享的全局变量,因此需要使用互斥锁等机制来保证线程安全。
相关问题
1.#include<stdio.h> 2.#include<stdlib.h> 3.#include<pthread.h> 4.#include<unistd.h> 5.int a,b; 6. 7.void thread_fun1(void *arg) 8.{ 9. int sum; 10. sum=a+b; 11. printf("add:%d\n",sum); 12. sleep(1); 13.} 14. 15.void thread_fun2(void *arg) 16.{ 17. int sub; 18. sub=a-b; 19. printf("sub:%d\n",sub); 20. sleep(1); 21.} 22. 23.int main() 24.{ 25. pthread_t id1,id2; 26. int err; 27. scanf("%d%d",&a,&b); 28. err=pthread_create(&id1,NULL,(void *)thread_fun1,NULL); 29. if(err) 30. { 31. printf("create pthread error!\n"); 32. return 1; 33. } 34. err=pthread_create(&id2,NULL,(void *)thread_fun2,NULL); 35. if(err) 36. { 37. printf("create pthread error!\n"); 38. return 1; 39. } 40. pthread_join(id1,NULL); 41. pthread_join(id2,NULL); 42. exit(0); 43.}
这段代码是一个简单的多线程程序,用C语言编写。代码的功能是接受用户输入的两个整数a和b,然后创建两个线程,分别计算a+b和a-b的结果,并在屏幕上打印出来。
在主函数main中,首先定义了两个pthread_t类型的变量id1和id2,用于存储线程的ID。然后通过scanf函数接受用户输入的两个整数a和b。
接下来,使用pthread_create函数创建两个线程,分别调用thread_fun1和thread_fun2函数。这两个函数分别计算a+b和a-b的结果,并使用printf函数打印出来。在计算结果之后,使用sleep函数暂停1秒钟,以模拟线程执行的时间。
接着使用pthread_join函数等待线程id1和id2的结束。最后调用exit函数退出程序。
请注意,这段代码只是一个简单的示例,没有进行错误处理和线程同步。在实际应用中,可能需要添加适当的错误处理和同步机制来保证程序的正确性和稳定性。
#include <stdio.h> #include <stdlib.h> #include <pthread.h> int sum1 = 0, sum2 = 0; void *p1(){ int i, tmp = 0; for (i = 1; i <= 100; i++) tmp += i; sum1 += tmp; } void *p2(){ int i, tmp = 0; for (i = 101; i <= 200; i++) tmp += i; sum2 += tmp; } void p3(){ printf("sum: %d\n", sum1 + sum2); } int main(){ int res; pthread_t t1; pthread_t t2; //像这里,就是开一个新线程 void *thread_result; res = pthread_create(&t1, NULL, p1, NULL); if (res != 0){ perror("failed to create thread"); exit(1); } res = pthread_create(&t2, NULL, p2, NULL); //在这里,加一个线程,就是开一个新的。 if (res != 0){ perror("failed to join thread"); exit(2); } res = pthread_join(t1, &thread_result); res = pthread_join(t2, &thread_result); //这里再加这个 p3(); return 0; }解释此代码
这段代码的功能是创建两个线程,分别计算1到100和101到200的整数的和,然后将两个和相加并输出。代码中定义了三个函数p1、p2和p3,分别用于计算1到100、101到200的整数的和和输出和的结果。在主函数中,先创建两个线程并分别执行p1和p2函数,将计算结果存储在sum1和sum2变量中。然后通过pthread_join函数等待线程执行完毕。最后调用p3函数输出两个和的和。
需要注意的是,代码中的p1、p2和p3函数应该是返回void指针类型的,而不是不带返回值的void类型。另外,在创建第二个线程时,错误处理中的错误信息应该是"failed to create thread",而不是"failed to join thread"。代码中还存在一些不规范的写法,比如函数参数不加类型声明,缺少函数声明等。建议在编写代码时注意代码的规范性和安全性。以下是经过修改后的代码:
```
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
int sum1 = 0, sum2 = 0;
void *p1(void *arg){
int i, tmp = 0;
for (i = 1; i <= 100; i++)
tmp += i;
sum1 += tmp;
return NULL;
}
void *p2(void *arg){
int i, tmp = 0;
for (i = 101; i <= 200; i++)
tmp += i;
sum2 += tmp;
return NULL;
}
void p3(){
printf("sum: %d\n", sum1 + sum2);
}
int main(){
int res;
pthread_t t1, t2;
void *thread_result;
res = pthread_create(&t1, NULL, p1, NULL);
if (res != 0){
perror("failed to create thread");
exit(1);
}
res = pthread_create(&t2, NULL, p2, NULL);
if (res != 0){
perror("failed to create thread");
exit(1);
}
res = pthread_join(t1, &thread_result);
if (res != 0){
perror("failed to join thread");
exit(2);
}
res = pthread_join(t2, &thread_result);
if (res != 0){
perror("failed to join thread");
exit(2);
}
p3();
return 0;
}
```
阅读全文