我正在学习C ++,而且我遇到了模板的使用。
所以我尝试使用模板实现以下两个功能,如下所示:
template <typename T>
T max(T a, T b){
return (a > b) ? a : b;
}
template <typename T>
T max(T a, T b, T c){
return max( max(a, b), c);
}
嗯,上面的实现在编译过程中会抛出一些错误。
这就是错误:
templateEx.cpp:13:14: error: call to 'max' is ambiguous
return max( max(a, b), c);
^~~
templateEx.cpp:17:22: note: in instantiation of function template specialization
'max<int>' requested here
cout<<"2, 3, 4 : "<<max(2,3,4);
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/algorithm:2654:1: note:
candidate function [with _Tp = int]
max(const _Tp& __a, const _Tp& __b)
^
templateEx.cpp:7:3: note: candidate function [with T = int]
T max(T a, T b){
^
1 error generated.
但另一方面,如果我不使用任何模板,我会使用普通函数重载,如下例所示:
int max(int a, int b){
return (a > b) ? a : b;
}
int max(int a, int b, int c){
return max( max(a, b), c);
}
上面的代码编译没有错误。
有人可以解释一下吗?
我哪里错了?
答案 0 :(得分:6)
有一个std::max
,这是你与之相冲突的。您的代码中某处有using namespace std;
或using std::max
吗?
使用不同数量的参数重载模板函数应该有效。