gpt4 book ai didi

c - 文件定位功能是否会在内部将输出刷新到设备并清除输入缓存?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:34:20 25 4
gpt4 key购买 nike

来自 https://stackoverflow.com/a/52068965/156458

When switching between reading and writing, that buffer must be cleared before switching modes, otherwise data loss could potentially occur. Each of the operations mentioned above perform the required flushing of the buffer.

“操作”包括 fseek、fsetpos 和 rewind。

文件定位功能是否会在内部将输出刷新到设备并清除输入缓存? 7.21.5.3p7 in the C standard没说。我也没有在文件定位函数的联机帮助页中找到它。

如果不是,为什么要在输出和输入之间调用文件定位函数(如果不是 fflush)?

谢谢。

最佳答案

用于打开文件的更新 (+) 模式的描述包含以下详细信息:

When a file is opened with update mode ('+' as the second or third character in the above list of mode argument values), both input and output may be performed on the associated stream. However, output shall not be directly followed by input without an intervening call to the fflush function or to a file positioning function (fseek, fsetpos, or rewind), and input shall not be directly followed by output without an intervening call to a file positioning function, unless the input operation encounters endof-file.

因此,虽然这些函数的描述没有明确提到它们会刷新缓冲区,但该子句暗示了这一点。但只有在使用更新模式时才需要。

关于c - 文件定位功能是否会在内部将输出刷新到设备并清除输入缓存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52106265/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com