我有一个像
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;
}