3

我正在尝试为基因测序项目构建 16 种不同的后缀树。它们是这样构建的

int main()
{  
  ifstream fp;  
  fp.open("filepath", ifstream::in);  
  Tree I(fp);  
  fp.close();

我正在尝试通过以下代码在构造函数中使用它们:

Tree::Tree(ifstream &fp)   
{  
  string current = "";  
  char* line;  
  fp.getLine(line, 100); //ignore first line  
  for(int i=0; i<100; i++)     
    {  
      char temp = (char)fp.get();  
      if(temp=='\n')i--;  
      else current+=temp;  
    }  
  insert(current);  
  while(fp.good())  
    {  
      current = current.substr(1,99);  
      char temp = (char)fp.get();  
      if(temp=='\n')temp=(char)fp.get();  
      if(temp==EOF) break;  
      current+=temp;  
      insert(current);  
    }  
}  

当我尝试编译时,对于我使用 fp 的每个实例,我都会收到以下错误:

suffix.cpp:在构造函数中Tree::Tree(std::ifstream&)
suffix.cpp:12:错误:无效使用未定义类型struct std::basic_ifstream<char, std::char_traits<char> >
/usr/lib/gcc/x86_64-redhat-linux/4.1.2/../../../../include /c++/4.1.2/iosfwd:89: 错误:struct std::basic_ifstream<char, std::char_traits<char> >
suffix.cpp:15 的声明:错误:无效使用未定义类型struct std::basic_ifstream<char, std::char_traits<char> >
/usr/lib/gcc/x86_64-redhat-linux/4.1.2/../.. /../../include/c++/4.1.2/iosfwd:89:错误:声明struct std::basic_ifstream<char, std::char_traits<char> >

4

2 回答 2

7

你有#includefstream标题吗?

于 2010-02-23T02:14:50.210 回答
5

看起来您的源文件中有 #included <iosfwd> 而不是 <fstream> 。

于 2010-02-23T02:15:46.847 回答