源文件

时间:2015-10-23 16:36:19

标签: c++ templates c++11 syntax compiler-errors

从这个问题移出Storing C++ template function definitions in a .CPP file,我试图在标题和源文件中分离模板化类的代码。但是,我失败了,但我希望能够在这种情况下有所启发。请注意,与问题的不同之处在于他具有模板化函数,而不是类。

file.h

template<typename T>
class A {
public:
    A();
private:
    T a;
};

file.cpp

#include "file.h"

template<typename T>
A::A() { a = 0; }

template<int> class A;

和main.cpp

#include "file.h"

int main() {
    A<int> obj;
    return 0;
}

和错误:

../file.cpp:4:1: error: invalid use of template-name ‘A’ without an argument list  A::A() { a = 0; }  
^ In file included from ../file.cpp:1:0: ../file.h:1:10: error: template parameter ‘class T’  template<typename T>
^ ../file.cpp:6:21: error: redeclared here as ‘int <anonymous>’  template<int> class A;
^ make: *** [file.o] Error 1

1 个答案:

答案 0 :(得分:4)

像这样修改你的.cpp文件:

template<typename T>
A<T>::A() { a = 0; } // note the <T>

template class A<int>;