我在尝试编译在.hpp
和.cpp
文件之间分割的C ++模板类时遇到错误:
$ 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
这是我的代码:
stack.hpp:
#ifndef _STACK_HPP
#define _STACK_HPP
template <typename Type>
class stack {
public:
stack();
~stack();
};
#endif
stack.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;
}
main.cpp:
#include "stack.hpp"
int main() {
stack<int> s;
return 0;
}
ld
当然是正确的:符号不在中stack.o
。
这个问题的答案无济于事,正如我所说的那样。
这可能会有所帮助,但是我不想将每个方法都移动到.hpp
文件中,我不必,应该吗?
将.cpp
文件中的所有内容移动到.hpp
文件中并仅包含所有内容而不是将其作为独立目标文件链接的唯一合理解决方案吗?这似乎非常难看!在这种情况下,我还不如恢复到我以前的状态,并重新命名stack.cpp
,以stack.hpp
和与它做。