进程间通信(1.1):无名管道

       用于亲缘间进程通信;

       有固定的读端和写端;

       不会在磁盘系统中存在,是临时文件。

       函数:pipe

pipe.c

/*===============================================
 *   文件名称:pipe.c
 *   创 建 者:cxy     
 *   创建日期:2024年02月06日
 *   描    述:
 ================================================*/
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <string.h>

int main()
{
    int pipefd[2] = {0};    //pipefd[0]为read端 pipefd[1]为write端
    pipe(pipefd);           //创建无名管道,并获得读、写端

    pid_t pid = fork();     //创建子进程
    if(0 == pid)            //子进程
    {
        char buf[30] = {0};
        int len;
        while(1)
        {
            fgets(buf,sizeof(buf),stdin);       //会获取空格、换行符
            len = strlen(buf);                  //字符串有效长度包括换行符
            if(buf[len-1] == '\n')
                buf[len-1] = '\0';              //将换行符换为字符串结束标志'\0'
            write(pipefd[1],buf,strlen(buf));   //buf中数据从写端写入无名管道
        }
    }
    else                   //父进程
    {
        char buf[30] = {0};
        while(1)
        {
            read(pipefd[0],buf,sizeof(buf));   //无名管道读端读取数据到buf
            printf("buf:%s\n",buf);            //打印
            memset(buf,0,sizeof(buf));         //清空buf
        }
    }

    return 0;
} 

结果

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值