std::fflush
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cstdio> 中定义
|
||
int fflush( FILE *stream ); |
||
导致的输出文件流,要同步的文件的实际内容。如果给定的流的输入的类型,则该函数的行为是未定义.
原文:
Causes the output file stream to be synchronized with the actual contents of the file. If the given stream is of the input type, then the behavior of the function is undefined.
[编辑] 参数
stream | - | 的文件流同步
|
[编辑] 返回值
成功返回零。否则EOF返回,并设置文件流的错误指示灯.
原文:
Returns zero on success. Otherwise EOF is returned and the error indicator of the file stream is set.
[编辑] 另请参阅
打开一个文件 (函数) | |
关闭一个文件 (函数) | |
C documentation for fflush
|