我有一个简单的问题。我只是在学习如何使用fstream
数据文件进行打印,而我只是在编译时遇到了问题。我在这段代码的第 11 行和第 20 行遇到了同样的错误。另外,我不太确定我是否在代码末尾正确地从文件中打印。
我得到的错误是:
'错误:'.'之前的预期构造函数、析构函数或类型转换 令牌'
对于第 11 行和第 20 行,这是相同的错误,但使用字符<<
而不是.
. 我也收到此错误:
“错误:'if'之前的预期不合格ID”
出于某种原因,尽管我很确定我的语法在这些方面是正确的。这些错误是否有某种关联?这是我的main.cpp文件:
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
ofstream outFile;
string filename = "test.txt";
outFile.open(filename.c_str() );
if (!outFile) {
cerr << "File "
<< filename
<< " failed to open for output."
<< endl;
}
outFile << "Hello world!"
<< 2013
<< 3.14
<< "The end."
<< endl;
outFile.close();
ifstream inFile;
inFile.open("test.txt");
if (!inFile) {
cerr << "File "
<< filename
<< " failed to open for input."
<< endl;
}
int i=0;
while (inFile >> i) {
cout<< i
<< endl;
i++;
cout<< "Year is: "
<< i
<< endl;
i++;
cout<< "PI is about: "
<< i
<<endl;
i++;
cout<< i
<<endl;
}