C ++模板函数创建问题

时间:2019-03-14 19:54:00

标签: c++ templates metaprogramming template-meta-programming

我写了带有3个参数的模板函数,T是数组的类型,FUNC是返回并获取T作为参数,N作为数组大小的函数。 我收到几乎没有任何提示的编译错误:“未能专门化功能模板”。

template<typename T,T* (*FUNC)(T), int N>
void process(T array[])
{
    for (int i=0;i<N;i++)
    {
        array[i] = FUNC(array[i]);
    }
}

int main()
{
    double a[] = { 1, 2, 3, 4 };
    process<double, sin, 4>(a); 
    for (auto x : a)
        std::cout << x << " "; // 0.841471 0.909297 0.14112 -0.756802
}

1 个答案:

答案 0 :(得分:2)

sin与第二个模板参数不匹配。将函数声明更改为

template<typename T, T (*FUNC)(T), int N>
//                ^^ T, not T*