代码:
#include <stdio.h>
#include <unistd.h>
int main(void)
{
char buf[BUFSIZ];
int n;
while((n = read(0, buf, BUFSIZ)) > 0 && printf("1:%d ", n))
{
printf("2:%d ", n);
write(1, buf, n);
}
return 0;
}
pupu(my input)
pupu(output)
popopo(my input)
popopo(output)
1:5 2:5 1:7 2:7(output)
我的问题:它是如何运作的?
(为什么在n_read之前缓冲文本输出?)
答案 0 :(得分:1)
标准I / O函数(如printf
)缓冲,意味着在缓冲区已满或明确刷新之前不会打印到stdout
的输出。
另一方面,直接写入输出文件描述符不缓冲并直接写入。
这里你有混合直接和缓冲输出,并且在程序退出并刷新缓冲区之前,实际上不会写入缓冲输出。