作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
fstream fs("f.txt", fstream::in | fstream::out | fstream::trunc);
if(fs)
{
string str = "45464748";
fs << str;
fs.seekg(0, ios::beg);
int i = -1;
fs >> i;
cout << i << endl;
fs.seekp(0, ios::beg);
i = 0x41424344;
fs << i;
fs.close();
}
f.txt内容是“45464748”,但我应该理解它的内容是“1094861636”。我不知道原因,请帮助我。
最佳答案
流状态的 eof 位由之前的读取设置,因此写入无效。写入前清除流状态。
void ftest()
{
std::fstream fs("f.txt", std::fstream::in | std::fstream::out | std::fstream::trunc);
if(fs)
{
std::cout << "A: " << (fs.eof() ? "eof" : "neof") << std::endl;
std::string str = "45464748";
fs << str;
std::cout << "B: " << (fs.eof() ? "eof" : "neof") << std::endl;
fs.seekg(0, std::ios::beg);
std::cout << "C: " << (fs.eof() ? "eof" : "neof") << std::endl;
int i = -1;
// THIS read sets the EOF bit.
fs >> i;
std::cout << "D: " << (fs.eof() ? "eof" : "neof") << std::endl;
std::cout << i << std::endl;
fs.seekp(0, std::ios::beg);
std::cout << "E: " << (fs.eof() ? "eof" : "neof") << std::endl;
i = 0x41424344;
std::cout << "F: " << (fs.eof() ? "eof" : "neof") << std::endl;
fs << "not written";
fs.clear ();
std::cout << "G: " << (fs.eof() ? "eof" : "neof") << std::endl;
fs << i;
fs.close();
}
}
输出:
A: neof
B: neof
C: neof
D: eof
45464748
E: eof
F: eof
G: neof
文件内容:
1094861636
关于c++ - fstream,先写,再读,再写,最后一次写失败,不知道是什么原因,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46824238/
fstream fs("f.txt", fstream::in | fstream::out | fstream::trunc); if(fs) { string str = "4546474
我是一名优秀的程序员,十分优秀!