我将函数转换为模板,并开始出现此错误。我一定不理解模板的限制。有人能告诉我为什么这会坏吗?
我收到此错误:
Undefined symbols:
"bool foo<int>(int const&, int const&)", referenced from:
_main in file1.o
ld: symbol(s) not found
当我链接以下代码时。代码已简化,但仍然失败。第一个文件包含:
#include <iostream>
template <class T> bool foo (const T&, const T&);
int main ()
{
int left = 1;
int right = 2;
if (foo <int> (left, right))
std::cout << "foo!" << std::endl;
return 0;
}
第二个文件包含:
template <class T> bool foo (const T& left, const T& right)
{
return true;
}