-1

我对 10.05 版的代码块有疑问。我做了一个c++项目,我写了一个这样的程序:

主文件

#include <iostream>
#include "vectorddd.hpp"


using namespace std;

int main()
{

    vector3D<int> tesztinttomb;
    tesztinttomb.saveout("igen.dat");
    return 0;
}

头文件(vectorddd.hpp):

#ifndef VECTORDDD_HPP_INCLUDED
#define VECTORDDD_HPP_INCLUDED

#include <iostream>

template <class T>
class vector3D  {
    T *x;
    T *y;
    T *z;
    int meret;
public:
    void saveout(char* FileName);

    vector3D(int Meret=0) :  x(new T[meret]), y(new T[Meret]), z(new T[Meret]), meret(Meret) {}

    ~vector3D()  { delete [] x; delete [] y; delete [] z; }
};


#endif // VECTORDDD_HPP_INCLUDED

实现文件(vectorddd.cpp):

#include "vectorddd.hpp"

template <class T>
void vector3D<T>::saveout(char* FileName) {
    int i=0;// I know this is stupid... but the emphasis is on the linking problem

}

它只是没有联系在一起。我知道我必须检查 .cpp 文件链接并在 properties->build options 中编译设置。而且我没有发现任何问题,只是写总是一样的:

In function `main':
undefined reference to `vector3D<int>::saveout(char*)'
||=== Build finished: 1 errors, 0 warnings ===|

如果我将 .cpp 文件实现放入我的 .hpp 文件中,它可以正常工作。但这不是代码块应该如何工作的。

4

1 回答 1

2

你的模板需要在你的头文件里,想想看,如果模板在cpp文件里,怎么实例化呢?

你应该把这个:

template <class T>
void vector3D<T>::saveout(char* FileName) {
    int i=0;// I know this is stupid... but the emphasis is on the linking problem

}

在您的标头 vectorddd.hpp 文件中

请参阅类似的 SO 帖子:将 C++ 模板函数定义存储在 .CPP 文件中

于 2012-04-19T19:40:59.433 回答