gpt4 book ai didi

解析c中stdout与stderr容易忽视的一些细节

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章解析c中stdout与stderr容易忽视的一些细节由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

先看下面一个例子 a.c

复制代码 代码如下

int main(int argc, char *argv[]) {  fprintf(stdout, "normal\n");  fprintf(stderr, "bad\n");  return 0; } 。

$ ./a normal bad $ ./a > tmp 2>&1 $ cat tmp bad tmp 我们看到, 重定向到一个文件后, bad 到了 normal 的前面. 原因如下

复制代码 代码如下

"The stream stderr is unbuffered. The stream stdout is line-buffered when it points to a      terminal. Partial lines will not appear until fflush(3) or exit(3) is called, or a newline      is printed. This can produce unexpected results, especially with debugging output.  The      buffering mode of the standard streams (or any other stream) can be changed using the      setbuf(3) or setvbuf(3) call. " 。

因此, 可以使用如下的代码

复制代码 代码如下

int main(int argc, char *argv[]) {  fprintf(stdout, " normal\n");  fflush(stdout);  fprintf(stderr, " bad\n");  return 0; } 。

这样重定向到一个文件后就正常了. 但是这种方法只适用于少量的输出, 全局的设置方法还需要用 setbuf() 或 setvbuf(), 或者采用下面的系统调用

复制代码 代码如下

int main(int argc, char *argv[]) {  write(1, "normal\n", strlen("normal\n"));  write(2, "bad\n", strlen("bad\n"));  return 0; } 。

但是尽量不要同时使用 文件流 和 文件描述符.

复制代码 代码如下

"Note that mixing use of FILEs and raw file descriptors can produce unexpected results and      should generally be avoided.  A general rule is that file      descriptors are handled in the kernel, while stdio is just a library. This means for exam-      ple, that after an exec(), the child inherits all open file descriptors, but all old      streams have become inaccessible." 。

最后此篇关于解析c中stdout与stderr容易忽视的一些细节的文章就讲到这里了,如果你想了解更多关于解析c中stdout与stderr容易忽视的一些细节的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com