std::setbuf
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cstdio> 中定义
|
||
void setbuf( FILE* stream, char* buffer ); |
||
设置内部缓冲区用于I / O操作在C流
stream
.原文:
Sets the internal buffer to use for I/O operations performed on the C stream
stream
.如果
buffer
不为空,相当于std::setvbuf(stream, buffer, _IOFBF, BUFSIZ)原文:
If
buffer
is not null, equivalent to std::setvbuf(stream, buffer, _IOFBF, BUFSIZ)如果
buffer
是空的,相当于std::setvbuf(stream, NULL, _IONBF, 0),关闭缓冲.原文:
If
buffer
is null, equivalent to std::setvbuf(stream, NULL, _IONBF, 0), which turns off buffering.[编辑] 参数
stream | - | 文件流设置缓冲区.....
原文: the file stream to set the buffer to. |
buffer | - | 数据流使用的缓冲器的指针。如果NULL供给,缓冲是关闭的。如果不为null,必须是能保持至少
BUFSIZ 字符原文: pointer to a buffer for the stream to use. If NULL is supplied, the buffering is turned off. If not null, must be able to hold at least BUFSIZ characters |
[编辑] 返回值
(无)
[编辑] 另请参阅
设置文件流的缓冲区,其大小 原文: sets the buffer and its size for a file stream (函数) | |
C documentation for setbuf
|