3

我正在尝试进行我的第一个管道工作:基本上我已经编写了一个程序,该程序应该在屏幕上显示输入的内容。问题是只打印了几个字符(通常只打印第一个),我真的很难理解为什么. 我的代码是:

if ( pid > 0 ) //If I'm the parent
{
    close(fd[0]);
    //as long as something is typed in and that something isn't 
    // the word "stop"
    while (((n = read(STDIN_FILENO, buffer, BUFFERSIZE)) > 0) && 
           (strncmp(buffer, "stop", 4) != 0))
    {
        //shove all the buffer content into the pipe
        write(fd[1], buffer, n);
    }

}
else //If I am the child
{
    close(fd[1]);

    //as long as there's something to read
    while (pipe_read = read(fd[0], buf, BUFFERSIZE) > 0)
    {
        //display on the screen!
        write(STDOUT_FILENO, buf, pipe_read);
    }

}
4

1 回答 1

4
while (pipe_read = read(fd[0], buf, BUFFERSIZE) > 0)

运算符>的优先级高于=pipe_read将具有表达式的值:

read(fd[0], buf, BUFFERSIZE) > 0

根据比较的结果,即为 1 或 0。这就是为什么write只打印一个字符的原因。

while ((pipe_read = read(fd[0], buf, BUFFERSIZE)) > 0)
于 2013-06-06T17:35:24.603 回答