索迪斯万通卡使用范围:我在查c语言资料时有一句“given file stream” 各位大虾 什莫伊斯阿???

来源:百度文库 编辑:查人人中国名人网 时间:2024/05/07 09:08:52
其全文如下:The function feof() returns a nonzero value if the end of the given file stream has been reached.
我的意思是 “given file stream"这句英文是什莫意思 怎模翻译
谢谢啊~~~

是std::filestream或者它的子类的一个函数

比如,有个文件a.txt
std::filestream("a.txt") fs1;
如果通过这个读文件读到了末尾,fs1.feof()就会返回非0,如果没有读到末尾,则会返回0。具体你可以看看fstream这个头文件