通过管道传递整数

时间:2015-05-18 18:39:05

标签: c++ linux

我在通过管道Linux发送整数或整数数组时遇到问题,首先我试图发送一个整数,看看这段代码:

#include <unistd.h>
#include<iostream>
#include<cstdlib>
#include <sys/types.h>
#include <sys/wait.h>
using namespace std;

int main()
{

    int count = 10 ;
    //cout <<"Enter a digit : ";
    //cin >> count ;
    cout<<"\n";

    int pfd1[1];
    pipe(pfd1);    

    int a=fork();
    if(a==0)
    {    
        close(pfd1[0]);
        write(pfd1[1],&count,sizeof(count));
        close(pfd1[1]);
        exit(0);
    }
    else
    {   
        wait(NULL);
        int n =0;
        close(pfd1[1]);       
        read(pfd1[0],&n ,sizeof(n));
        close(pfd1[0]);
        cout <<"N from parent = "<<n<<"\n\n";
    }
    return 0;
}

输出:

N from parent = 4

输出应该与声明的输出相同10,但它给我4,即使我取消注释注释代码以便用户输入数字,输出也始终为{ {1}},而它应该是用户输入的数字。

这里有什么问题?如果我想发送整数数组怎么办?

1 个答案:

答案 0 :(得分:2)

您将退出数组边界,您应该将pfd1声明为

int pfd1[2];