此外,默认情况下缓冲区是BUFSIZ(不确定这是POSIX还是C的东西).很明显这对stdin / stdout / stderr意味着什么,但新打开文件的默认值是什么?它们是否针对输入和输出进行缓冲?或者也许只有一个?
如果它是缓冲的,输出默认为阻塞或行模式吗?
编辑:我已经做了一些测试,看看Jonathan Leffler的回答如何影响现实世界的节目.看来,如果你做了一个读,那么写.写入将导致输入缓冲区的未使用部分完全丢弃.事实上,将会有一些搜索来保持正确的文件偏移量.我用这个简单的测试程序:
/* input file contains "ABCDEFGHIJKLMnopQRSTUVWXYZ" */#include <stdio.h>#include <stdlib.h>int main() { file *f = fopen("test.txt","r+b"); char ch; fread(&ch,1,f); fwrite("test",4,f); fclose(f); return 0;}
导致以下系统调用:
read(3,"ABCDEFGHIJKLMnopQRSTUVWXYZ\n",4096) = 27 // attempt to read 4096 chars,got 27lseek(3,-26,SEEK_CUR) = 1 // at this point,I've done my write already,so forget the 26 chars I never asked for and seek to where I should be if we really just read one character...write(3,"test",4) = 4 // and write my testclose(3) = 0
虽然这些显然是实现细节,但我发现它们非常有趣,就标准库的实现方式而言.感谢Jonathan的深刻回答.
解决方法 单个文件流具有单个缓冲区.如果文件用于输入和输出,则必须确保在读取和写入(或写入和读取) *** 作之间执行适当的 *** 作(fseek()或等效 *** 作).标准通道的缓冲行为取决于平台.
通常,当输出到达终端时,stdout是行缓冲的.但是,如果stdout要转到文件或管道而不是终端,那么它通常会切换到完全缓冲.
通常,stderr是行缓冲或无缓冲的,以确保看到错误消息(例如,即使程序即将崩溃).
通常,stdin是行缓冲的;这意味着您有机会编辑输入(退出错误等).你很少会调整它.同样,如果输入来自文件(或管道),则行为可能不同.
新打开的文件通常会被完全缓冲.如果设备是终端,则特定实现可以将其改变为行缓冲.
你的前提 – 有两个缓冲区 – 是不正确的.
C99的第7.19.3节,它说:
At program startup,three text streams are predefined and need not be opened explicitly
— standard input (for reading conventional input),standard output (for writing
conventional output),and standard error (for writing diagnostic output). As initially
opened,the standard error stream is not fully buffered; the standard input and standard
output streams are fully buffered if and only if the stream can be determined not to refer
to an interactive device.
因此,如最初所述,stderr要么是无缓冲的,要么是行缓冲的(它没有完全缓冲).
总结以上是内存溢出为你收集整理的c – fopen’d文件的默认输入和输出缓冲?全部内容,希望文章能够帮你解决c – fopen’d文件的默认输入和输出缓冲?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)