模板化模板的模板化构造函数的C ++显式模板特化

时间:2010-04-01 19:38:58

标签: c++ templates template-specialization

我有一个像

这样的课程
template <class T>
struct A{
    template <class U>
    A(U u);
};

我想为像

这样的声明写一个明确的专门化
A<int>::A(float);

在下面的测试代码中,如果我注释掉了专门化,它会用g ++编译。否则,它说我的模板参数数量错误:

#include <iostream>

template <class T>
struct A{
    template <class U>
    A(T t, U *u){
        *u += U(t);
    }
};

template <>
template <>
A<int>::A<int,float>(int t, float *u){
    *u += float(2*t);
}

int main(){
    float f = 0;
    int i = 1;
    A<int>(i, &f);
    std::cout << f << std::endl;
    return 0;
}

2 个答案:

答案 0 :(得分:4)

尝试

template <>
template <>
A<int>::A(int t, float *u){
     *u += float(2*t);
}

这似乎对我有用。

答案 1 :(得分:1)

定义的函数参数列表应与声明的匹配。

template <>
template <>
A<int>::A<float>(int t, float *u){
    *u += U(2*t);
}