手机
当前位置:查字典教程网 >编程开发 >C语言 >解析c中stdout与stderr容易忽视的一些细节
解析c中stdout与stderr容易忽视的一些细节
摘要:先看下面一个例子a.c:复制代码代码如下:intmain(intargc,char*argv[]){fprintf(stdout,"norm...

先看下面一个例子

a.c :

复制代码 代码如下:

int main(int argc, char *argv[])

{

fprintf(stdout, "normaln");

fprintf(stderr, "badn");

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, " normaln");

fflush(stdout);

fprintf(stderr, " badn");

return 0;

}

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

复制代码 代码如下:

int main(int argc, char *argv[])

{

write(1, "normaln", strlen("normaln"));

write(2, "badn", strlen("badn"));

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/C++中如何终止线程的运行

解析在Direct2D中画Bezier曲线的实现方法

浅析c#中WebBrowser控件的使用方法

C/C++中static,const,inline三种关键字详细总结

关于STL中set容器的一些总结

浅析string 与char* char[]之间的转换

深入理解c++中char*与wchar_t*与string以及wstring之间的相互转换

解析C#中不一样的大小写转换

解析c++中参数对象与局部对象的析构顺序的详解

C 语言restrict 关键字的使用浅谈

精品推荐
分类导航