函数.h:#pragmaonce#includetemplatevoidTemplatedFunction(T*p){}templatevoidTemplatedFunction(float*p){}templatevoidTemplatedFunction(char*p){}函数.cpp:#include"Functions.h"voidTest(){TemplatedFunction(NULL);TemplatedFunction(NULL);}主要.cpp:#include"Functions.h"voidTest();intmain(){Test();return0;}构建错误