从用户定义的头文件调用函数时未定义的引用错误,它的实现位于.cpp文件

时间:2018-05-16 12:35:20

标签: c++ c++11 codeblocks linker-errors header-files

我所做的是fstreamExtension类公开继承fstream class

fstreamExtension.h:

#include <fstream>
#include <string>
#include <vector>
#ifndef FSTREAMEXTENSION_H
#define FSTREAMEXTENSION_H

class fstreamExtension : public std::fstream
{
 private:

    std::string fileIdentifier;

public:

    using std::fstream::fstream;
    using std::fstream::open;

    ~fstreamExtension();

    inline void fileName (std::string&);

    inline bool exists ();

    inline unsigned long long fileSize();
};
#endif

fstreamExtension.cpp:

#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include "fstreamExtension.h"

inline void fstreamExtension::fileName (std::string& __fileIdentifier)
{
   fileIdentifier = __fileIdentifier;
}

inline bool fstreamExtension::exists ()
{
  if (FILE *file = fopen(fileIdentifier.c_str(), "r"))
  {
    fclose(file);
    return true;
  }

  else
    return false;
}


inline unsigned long long int fstreamExtension::fileSize()
{
  if(exists())
  {
    std::ifstream tempStream(fileIdentifier.c_str(), std::ios::ate |  std::ios::binary);
    unsigned long long int __size = tempStream.tellg();
    tempStream.close();
    return __size;
}

else return 0;
}

fstreamExtension::~fstreamExtension()
{
  std::fstream::close();
  std::cout << "stream closed";
}

code文件中将此main实施为:

#include <iostream>
#include <fstream>
#include "fstreamExtension.h" 

int main()
{
  string s = "QBFdata.txt";
  fstreamExtension fs(s.c_str(), ios::in | ios::binary);
  fs.fileName(s); //error
  cout << fs.fileSize(); //error
}

当我调用函数linkererror时,有一个filename() fileSize()

codeblocks种类出现以下错误:

  

对fstreamExtension :: fileName(std :: string&amp;)

的未定义引用

感谢您的帮助,请建议是否需要更改结构。

1 个答案:

答案 0 :(得分:1)

从函数声明和定义中删除inline以修复链接器错误。

inline对头文件中定义的函数有意义。对于在其他地方定义的函数inline使其他转换单元不可用,导致您观察到的链接器错误。