stdin, stdout, stderr

< c‎ | io
 
 
文件输入/输出
类型与对象
stdinstdoutstderr
函数
文件访问
直接输入/输出
无格式输入/输出
(C95)(C95)
(C95)
(C95)(C95)
(C95)
(C95)
有格式输入
 
定义于头文件 <stdio.h>
#define stdin  /* implementation-defined */
(1)
#define stdout /* implementation-defined */
(2)
#define stderr /* implementation-defined */
(3)

预定义三个文本流。这些流在程序启动时隐式打开,且为无面向。

1)标准输入流关联,用于读取约定的输入。程序启动时,该流为完全缓冲当且仅当能确定流不引用交互式设备。
2)标准输出流关联,用于写入约定的输出。程序启动时,该流为完全缓冲当且仅当能确定流不引用交互式设备。
3)标准错误流关联,用于写入诊断输出。程序启动时,该流不为完全缓冲。

何者组成交互式设备是实现定义的。

这些宏展开成 FILE* 类型表达式。

注解

尽管 POSIX 不强制, UNIX 约定是 stdinstdout 若与终端关联则为行缓冲,而 stderr 为无缓冲。

这些宏可能展开成可修改左值。若修改任何这些 FILE* 左值,则对应的流上的后续操作导致未指明或未定义行为。

示例

此示例展示等价于 printf 的函数。

#include <stdarg.h>
#include <stdio.h>
 
int my_printf(const char * restrict fmt, ...)
{
    va_list vl;
    va_start(vl, fmt);
    int ret = vfprintf(stdout, fmt, vl);
    va_end(vl);
    return ret;
}
 
int main(void)
{
    my_printf("Rounding:\t%f %.0f %.32f\n", 1.5, 1.5, 1.3);
    my_printf("Padding:\t%05.2f %.2f %5.2f\n", 1.5, 1.5, 1.5);
    my_printf("Scientific:\t%E %e\n", 1.5, 1.5);
    my_printf("Hexadecimal:\t%a %A\n", 1.5, 1.5);
}

可能的输出:

Rounding:       1.500000 2 1.30000000000000004440892098500626
Padding:        01.50 1.50  1.50
Scientific:     1.500000E+00 1.500000e+00
Hexadecimal:    0x1.8p+0 0X1.8P+0

引用

  • C11 standard (ISO/IEC 9899:2011):
  • 7.21.1 Introduction (p: 296-298)
  • 7.21.2 Streams (p: 298-299)
  • 7.21.2 Files (p: 300-302)
  • C99 standard (ISO/IEC 9899:1999):
  • 7.19.1 Introduction (p: 262-264)
  • 7.19.2 Streams (p: 264-265)
  • 7.19.2 Files (p: 266-268)
  • C89/C90 standard (ISO/IEC 9899:1990):
  • 4.9.1 Introduction
  • 4.9.2 Streams
  • 4.9.3 Files

参阅