1.无名管道
1.1 概念:相对于有名管道,没有名称,不能在任意进程之间使用,只能应用与父子进程之间,其原理是父子之间共享文件描述符,所以fork()之前打开无名管道
1.2创建并打开
Int pipe(int fd[2])//fcntl.h函数库里
Fd[0]写端 fd[1]读端
1 #include<stdio.h>
2 #include<unistd.h>
3 #include<fcntl.h>
4 #include<string.h>
5 void main()
6 {
7 int fd[2];//创建管道操作命令
8 char a[128]={0};
9 fgets(a,128,stdin);//输入数据
10 close(fd[0]);//关闭读操作
11 write(fd[1],a,strlen(a));//写入数据
12 printf("write sucess !\n");
13 pid_t pid=fork();
14 if(pid==0)//子进程读入数据
15 {
16 close(fd[1]);
17 read(fd[0],a,strlen(a));
18 printf("read success !\n");
19 }
20 }