c++中函数模板的问题
刚看了C++的函数模板,想发出几个疑问 疑问1:
#include <iostream>
using namespace std;
template <typename T>
T max(T a,T b) { return((a>b)?a:b); }
int main()
{
int a=1,b=2;
float c=5.2,d=6.3;
cout<<max(a,b)<<endl; <----编译时这里出现的问题
In function `int main()':
call of overloaded `max(int&, int&)' is ambiguous note f:\My Documents\my candidates are: T max(T, T) [with T = int]
const _Tp& std::max(const _Tp&, const _Tp&) [with _Tp = int]
call of overloaded `max(float&, float&)' is ambiguous
candidates are: T max(T, T) [with T = float]
const _Tp& std::max(const _Tp&, const _Tp&) [with _Tp = float]
call of overloaded `max(int&, int&)' is ambiguous note f:\My Documents\my candidates are: T max(T, T) [with T = int]
const _Tp& std::max(const _Tp&, const _Tp&) [with _Tp = int]
call of overloaded `max(float&, float&)' is ambiguous
candidates are: T max(T, T) [with T = float]
const _Tp& std::max(const _Tp&, const _Tp&) [with _Tp = float]
cout<<max(c,d)<<endl; <----编译时这里出现的问题
return 0;
}
当我把函数模板增加了一个参数C(但没有使用)
T max(T a,T b,T c)
{ return((a>b)?a:b); }
这样程序可以正常编译且运行
疑问2:
假若我是这样定义函数模板的
int max(T a,T b,T c)
{ return((a>b)?a:b); }
按道理返回值是int型的,可是实际上返回值是与你调用函数时的实参一样。