1.13 多线程编程

devtools/2025/1/16 9:12:56/

1.思维导图

2.创建两个子进程,父进程负责:向文件中写入数据;两个子进程负责:从文件中读取数据。
        要求:一定保证1号子进程先读取,2号子进程后读取,使用文件IO去实现。

1>程序代码
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <pthread.h>
#include <semaphore.h>
#include <wait.h>
#include <signal.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <semaphore.h>
#include <sys/msg.h>
#include <sys/shm.h>
#include <sys/un.h>typedef struct sockaddr_in addr_in_t;
typedef struct sockaddr addr_t;
typedef struct sockaddr_un addr_un_t;// 打开文件,写入数据
void task1()
{int fd = open("t1.txt", O_CREAT | O_RDWR | O_TRUNC, 0666);if (fd == -1){perror("open");return;}char buf[60] = "Hello world!";write(fd, buf, sizeof(buf));close(fd);
}// 读取数据
void task2()
{int fd = open("t1.txt", O_RDONLY);lseek(fd, 0, SEEK_SET);char buf[60] = {0};int res;while ((res = read(fd, buf, 1)) > 0){// 打印读取的字节putchar(buf[0]);}close(fd);
}int main(int argc, const char *argv[])
{// 创建第一个子进程pid_t pid1 = fork();if (pid1 == 0){sleep(1);task2();printf("\n1号子进程读取数据成功!\n");}else if (pid1 > 0){// 创建第二个子进程pid_t pid2 = fork();if (pid2 == 0){sleep(2);task2();printf("\n2号子进程读取数据成功!\n");}else if (pid2 > 0){// 父进程的操作task1();wait(0);wait(0);}}return 0;
}
2>运行结果

3.创建一个线程(结果为1个主线程和1个分支线程),主线程负责:输入三角形的三条边长;分支线程负责:计算三角形的面积(海伦公式)。
        注意:使用sqrt函数编译的时候需要在编译的最后加上 -lm。

1>程序代码
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <pthread.h>
#include <semaphore.h>
#include <wait.h>
#include <signal.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <semaphore.h>
#include <sys/msg.h>
#include <sys/shm.h>
#include <sys/un.h>
#include <math.h>typedef struct sockaddr_in addr_in_t;
typedef struct sockaddr addr_t;
typedef struct sockaddr_un addr_un_t;typedef struct Triangle
{double a;double b;double c;
}Tri,*TriPtr;void* thread_main(void* arg)
{TriPtr tri = (TriPtr)arg;double s = (tri->a + tri->b + tri->c)/2;double area = sqrt(s*(s-(tri->a))*(s-(tri->b))*(s-(tri->c)));printf("这个三角形的面积为:%.2lf\n",area);free(tri);
}int main(int argc, const char *argv[])
{TriPtr tri = (TriPtr)malloc(sizeof(Tri));printf("请输入三角形的三条边:");scanf("%lf%lf%lf",&(tri->a),&(tri->b),&(tri->c));pthread_t id;pthread_create(&id,0,thread_main,(void*) tri);pthread_join(id,NULL);free(tri);return 0;
}
2>运行结果


http://www.ppmy.cn/devtools/150902.html

相关文章

easyui datagrid表头和网格错位问题

问题&#xff1a;表头与数据网格错位 解决&#xff1a; 在onLoadSuccess事件中调用fitColumns方法 $(this).datagrid(‘fitColumns’);

在 Go语言中一个字段可以包含多种类型的值的设计与接种解决方案

在 Go 中&#xff0c;如果你希望一个字段可以包含多种类型的值&#xff0c;你可以使用以下几种方式来实现&#xff1a; ### 1. **使用空接口 (interface{})** Go 的空接口 interface{} 可以接受任何类型的值&#xff0c;因此&#xff0c;你可以将字段定义为一个空接口&#x…

论文阅读:Searching for Fast Demosaicking Algorithms

今天介绍一篇有关去马赛克的工作&#xff0c;去马赛克是 ISP 流程里面非常重要的一个模块&#xff0c;可以说是将多姿多彩的大千世界进行色彩还原的重要一步。这篇工作探索的是如何从各种各样的去马赛克算法中&#xff0c;选择最佳的一种。 Abstract 本文提出了一种方法&…

TP4056锂电池充放电芯片教程文章详解·内置驱动电路资源!!!

目录 TP4056工作原理 TP4056引脚详解 TP4056驱动电路图 锂电池充放电板子绘制 编写不易&#xff0c;仅供学习&#xff0c;感谢理解。 TP4056工作原理 TP4056是专门为单节锂电池或锂聚合物电池设计的线性充电器&#xff0c;充电电流可以用外部电阻设定&#xff0c;最大充电…

【SH】Xiaomi9刷Windows10系统研发记录 、手机刷Windows系统教程、小米9重装win10系统

文章目录 参考资料云盘资料软硬件环境手机解锁刷机驱动绑定账号和设备解锁手机 Mindows工具箱安装工具箱和修复下载下载安卓和woa资源包第三方Recovery 一键安装Windows准备工作创建分区安装系统 效果展示Windows和Android一键互换Win切换安卓安卓切换Win 删除分区 参考资料 解…

Springboot + vue 小区物业管理系统

&#x1f942;(❁◡❁)您的点赞&#x1f44d;➕评论&#x1f4dd;➕收藏⭐是作者创作的最大动力&#x1f91e; &#x1f496;&#x1f4d5;&#x1f389;&#x1f525; 支持我&#xff1a;点赞&#x1f44d;收藏⭐️留言&#x1f4dd;欢迎留言讨论 &#x1f525;&#x1f525;&…

2024年开发语言热度排名

随着技术的不断发展和变化&#xff0c;编程语言的热度也在不断演变。2024年即将到来&#xff0c;我们有必要回顾和展望当前和未来的开发语言市场。本文将基于多个因素&#xff0c;包括行业需求、社区支持、流行度以及新兴趋势&#xff0c;对2024年的开发语言热度进行排名和分析…

【Rust】结构体定义域实例化

目录 思维导图 1. 结构体的定义与实例化 1.1 结构体的基本概念 1.2 定义结构体 1.3 创建结构体实例 1.4 结构体的定义与实例化示例 2. 访问与修改结构体字段 2.1 访问字段 2.2 修改字段 3. 结构体实例的构造函数 3.1 构造函数的定义 3.2 使用字段初始化简写 4. 结…