我正在尝试搜索并重新读取数据。但代码失败了。
代码是
std::ifstream ifs (filename.c_str(), std::ifstream::in | std::ifstream::binary);
std::streampos pos = ifs.tellg();
std::cout <<" Current pos: " << pos << std::endl;
// read the string
std::string str;
ifs >> str;
std::cout << "str: " << str << std::endl;
std::cout <<" Current pos: " <<ifs.tellg() << std::endl;
// seek to the old position
ifs.seekg(pos);
std::cout <<" Current pos: " <<ifs.tellg() << std::endl;
// re-read the string
std::string str2;
ifs >> str2;
std::cout << "str2: (" << str2.size() << ") " << str2 << std::endl;
std::cout <<" Current pos: " <<ifs.tellg() << std::endl;
我的输入测试文件是
qwe
输出
Current pos: 0
str: qwe
Current pos: 3
Current pos: 0
str2: (0)
Current pos: -1
谁能告诉我什么是错的?
答案 0 :(得分:32)
当ifs >> str;
因为到达文件末尾而结束时,它会设置eofbit。
直到C ++ 11,seekg()
无法从流的末尾寻找(注意:你实际上是这样做的,因为输出是Current pos: 0
,但这并不完全一致:它应该失败寻求或者应该清除eofbit并寻求)。
无论哪种方式,要解决这个问题,您都可以在ifs.clear();
之前执行ifs.seekg(pos);
答案 1 :(得分:6)
看起来像是在读取它正在击中EOF并在流状态下标记的字符。执行seekg()调用时,流状态不会改变,因此下一次读取检测到EOF位已设置并返回而不读取。