- 论坛徽章:
- 0
|
大家好,模板函数链接问题请教,谢谢。
///////////////// ex01.h /////////////////////////
#include <iostream>
class TTT
{
public:
int value ()
{
return 10;
}
};
class UUU
{
public:
int value ()
{
return 20;
}
};
template <typename T, typename U>
void foo (T* t, U* u);
void bar (TTT *t, UUU *u);
/////////////////////////// ex01.cpp //////////////////////////////
#include "ex01.h"
#include <iostream>
template <typename T, typename U>
void foo (T* t, U* u)
{
std::cout << t->value () << std::endl;
std::cout << u->value () << std::endl;
}
void bar (TTT* t, UUU* u)
{
std::cout << t->value () << std::endl;
std::cout << u->value () << std::endl;
}
//////////////////////////////ex02.cpp ///////////////////////////
#include "ex01.h"
int
main ()
{
TTT t;
UUU u;
foo<TTT, UUU> (&t, &u);
bar (&t, &u);
}
///////////////////////////////////////////////
$ g++ -c ex01.cpp
$ g++ -o ex02 ex02.cpp ./ex01.o
/tmp/cckpGcvM.o:在函数‘main’中:
ex02.cpp .text+0x17):对‘void foo<TTT, UUU>(TTT*, UUU*)’未定义的引用
collect2: 错误: ld 返回 1
普通函数 bar,可以正常链接,模板函数就出问题,请问这是怎么回事,谢谢。 |
|