我尝试编译一个 C + + 模板类,它被分割成 .hpp
和 .cpp
文件,结果出现了错误:
$ g++ -c -o main.o main.cpp
$ g++ -c -o stack.o stack.cpp
$ g++ -o main main.o stack.o
main.o: In function `main':
main.cpp:(.text+0xe): undefined reference to 'stack<int>::stack()'
main.cpp:(.text+0x1c): undefined reference to 'stack<int>::~stack()'
collect2: ld returned 1 exit status
make: *** [program] Error 1
这是我的代码:
Hpp :
#ifndef _STACK_HPP
#define _STACK_HPP
template <typename Type>
class stack {
public:
stack();
~stack();
};
#endif
Cpp :
#include <iostream>
#include "stack.hpp"
template <typename Type> stack<Type>::stack() {
std::cerr << "Hello, stack " << this << "!" << std::endl;
}
template <typename Type> stack<Type>::~stack() {
std::cerr << "Goodbye, stack " << this << "." << std::endl;
}
Cpp :
#include "stack.hpp"
int main() {
stack<int> s;
return 0;
}
ld
当然是正确的: 这些符号不在 stack.o
中。
这个问题的答案没有帮助,因为我已经按照它说的做了。
这个 可能会有帮助,但是我不想把每一个方法都移动到 .hpp
文件中,我不应该这样做,对吗?
将 .cpp
文件中的所有内容移动到 .hpp
文件中,并简单地包含所有内容,而不是作为一个独立的对象文件链接,这是唯一合理的解决方案吗?这似乎 非常丑陋!在这种情况下,我不妨恢复到我以前的状态,并将 stack.cpp
重命名为 stack.hpp
,然后就可以完成了。