此代码块:
#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;
}
从这里获取,编译和运行良好,但是当我尝试手动编写并使用自动完成功能时,我的 IDE (Qt) 无法识别good()函数。谁能告诉我为什么?
谢谢
PS我使用mingw编译器,如果有帮助的话。