我正在尝试long
使用 c++ fstream 类将 a 写入文本文件。该文件在执行之前已经在磁盘上创建。我运行以下代码,可以读取初始值但无法保存新值,覆盖。我究竟做错了什么?
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <fstream>
using namespace std;
int main(int argc, char* argv[]) {
long f;
fstream myFile("data.txt", fstream::in|fstream::out);
cout << "f before: " << f << endl;
myFile >> f;
cout << "f after: " << f << endl;
f++;
cout << "f after increment: " << f << endl;
myFile << f;
myFile.close();
return 0;
}
之后,我读取了文件中的值并且它没有改变。我在这里做错了什么?