自动完成功能不会检测到eof(),bad(),good()函数

时间:2013-05-15 15:51:08

标签: c++ autocomplete qt-creator

此代码块:

#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编译器,如果这有帮助。

0 个答案:

没有答案