考虑以下代码
template <typename T, T one>
T exponentiel(T val, unsigned n) {
T result = one;
unsigned i;
for(i = 0; i < n; ++i)
result = result * val;
return result;
}
int main(void) {
double d = exponentiel<double,1.0>(2.0f,3);
cout << d << endl;
return 0;
}
编译器告诉我这个 没有匹配函数来调用'exponentiel(float,int)'
为什么?
奇怪的是exponentiel与int一起使用。
答案 0 :(得分:10)
问题在于模板参数列表中的T one
和1.0
。
您不能拥有浮点类型的非类型模板参数,也不能将浮点值作为模板参数传递。这是不允许的(据我所知,没有很好的理由不允许这样做。)
这里的g ++错误信息相当无益。 Visual C ++ 2010在main
:中使用模板的行上报告以下内容
error C2993: 'double' : illegal type for non-type template parameter 'one'
line 13: error: expression must have integral or enum type
double d = exponentiel<double,1.0>(2.0f,3);
^
line 2: error: floating-point template parameter is nonstandard
template <typename T, T one>
^