c中容易忽视stdout与stderr的细节

来源:爱站网时间:2020-04-24编辑:网友分享
我们在C语言中使用stdout与stderr的时候需要注意很多细节,那么你知道c中容易忽视stdout与stderr的细节有哪些吗?下面我们就一起去看看吧。

我们在C语言中使用stdout与stderr的时候需要注意很多细节,那么你知道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语言的代码

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载