我编写了一个模板函数,它在 math_functions.h 文件中使用了2个其他模板函数(add& mul):
template <typename Dtype>
Dtype mulvadd(Dtype* pa, Dtype* pb, int size, Dtype c)
{
Dtype result = Dtype(0);
for (int k = 0; k < size; k++)
{
result = add<Dtype>(result, mul<Dtype>(pa[k],pb[k]));
}
result = add<Dtype>(result, c);
return result;
}
int16_t mulv_int16(int16_t* pa, int16_t* pb, int size);
在 math_functions.cpp 中,我对add&amp;提供了不同的专业化mul,也是mulvadd for int16_t类型的专门化:
#include <stdint.h>
#include <fix16.h>
template<> float add<float>(float a, float b) { return a + b;}
template<> float mul<float>(float a, float b) { return a*b;}
template<> int16_t add<int16_t>(int16_t a, int16_t b) { return fix16_sadd(a, b); }
template<> int16_t mul<int16_t>(int16_t a, int16_t b) { return fix16_smul(a, b); }
#ifndef FIXMATH_NO_32BIT
template<> int16_t mulvadd<int16_t>(int16_t* pa, int16_t* pb, int size, int16_t c)
{
return c + mulv_int16(pa, pb, size);
}
#endif
int16_t mulv_int16(int16_t* pa, int16_t* pb, int size)
{
....
}
我还写了一个简单的测试程序:
#include "math_functions.h"
int main(int argc, char ** argv) {
int16_t av[4] = {241,134};
int16_t bv[4] = {-28, 7};
int16_t res = mulvadd<int16_t>(av, bv, 2, 0);
printf("res=%f\n", (double)res);
}
此代码编译没有任何错误,但奇怪的是,当我调用 mulvadd 时,调用的函数是h文件中定义的默认模板,而不是cpp文件中的专用版本。 有什么理由发生这种情况?
答案 0 :(得分:6)
编译器在使用main
函数编译文件时不会知道特殊化。它只知道头文件中的内容。
声明头文件中的特化,因此编译器知道它们。