C++ fstream 调整读取位置到文件头

使用fstream类提供的标准接口

seekg(0,std::ios::beg)

表示从文件begin位置开始,偏移0个字符。

如果在文件已经读取到结尾时,fstream的对象会将内部的eof state置位,这时使用seekg()函数不能将该状态去除,需要使用

clear()

方法。


主要参考:

marginal的回帖

http://topic.csdn.net/t/20061106/14/5136451.html


你可能感兴趣的:(c++)