此代码块:
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main () {
string line;
ifstream myfile ("example.txt");
if (myfile.is_open())
{
while ( myfile.good() )
{
getline (myfile,line);
cout << line << endl;
}
myfile.close();
}
else cout << "Unable to open file";
return 0;
}
取自here,编译并运行良好,但当我尝试手动编写并使用自动完成时,我的IDE(Qt)无法识别 good()函数。谁能告诉我为什么?
谢谢
P.S。我使用mingw编译器,如果这有帮助。