5

我有一个像

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;
}
4

2 回答 2

4

尝试

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

这似乎对我有用。

于 2010-04-01T19:43:06.223 回答
1

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

template <>
template <>
A<int>::A<float>(int t, float *u){
    *u += U(2*t);
}
于 2010-04-01T19:46:56.773 回答