我想編寫一個玩具程序來運行C++,但是我得到了一個奇怪的未定義的引用錯誤,我無法解決。編譯多個文件時出現奇怪的未定義引用錯誤
我的代碼由3個文件:
ex13_6.h:
#include<vector>
namespace ex13_6 {
template<class T> class Cmp {
public:
static int eq(T a, T b) {return a == b;}
static int lt(T a, T b) {return a < b;}
};
template<class T, class C = Cmp<T> > void bubble_sort(std::vector<T> &v);
}
ex13_6.cpp
#include<vector>
#include"ex13_6.h"
namespace ex13_6 {
template<class T, class C = Cmp<T> > void bubble_sort(std::vector<T> &v) {
int s = v.size();
T swap;
for (int i=0; i<s; i++) {
for (int j=0; j<s; j++) {
if (C::lt(v.at(j), v.at(i))) {
swap = v.at(i);
v.at(i) = v.at(j);
v.at(j) = swap;
}
}
}
}
}
main.cpp中:
#include"ex13_6.h"
#include<iostream>
#include<vector>
using namespace std;
using namespace ex13_6;
int main() {
// Sort using default comparison for int
vector<int> v_int;
for (int i=0; i<10; i++) {
v_int.push_back(10-i);
}
bubble_sort(v_int);
cout << "sort of int vector:\n";
for (vector<int>::const_iterator it = v_int.begin(); it != v_int.end(); it++) {
cout << ' ' << *it;
}
cout << '\n';
}
而且我編譯使用:
g++ main.cpp -o main -std=gnu++0x ex13_6.cpp
以下是錯誤消息:
/tmp/ccRwO7Mf.o: In function `main':
main.cpp:(.text+0x5a): undefined reference to `void ex13_6::bubble_sort<int, ex13_6::Cmp<int> >(std::vector<int, std::allocator<int> >&)'
collect2: ld returned 1 exit status
我真的很感激任何幫助!
您可能需要在'ex13_6.cpp'中顯式模板實例,或者您應該將模板函數的實現移動到頭文件'ex13_6.h'中。請參閱:http://stackoverflow.com/questions/495021/why-can-templates-only-be-implemented-in-the-header-file – jxh 2013-04-30 20:16:16
謝謝@ user315052。但爲什麼我不能將通用模板函數定義放在ex13_6.cpp中? – user690421 2013-04-30 20:18:27
@ user690421:你可以,但你需要一個明確的實例,正如我所解釋的。看到引用SO問題。 – jxh 2013-04-30 20:19:45