模板的使用
来源:岁月联盟
时间:2012-08-31
template<class Type>
Type Max(Type a,Type b)
{
if (a>b)
return a;
else
return b;
}
2.调用
int iMax=Max<int>(10,12);
double a=10.3,b=12.4;
double dMax=Max(a,b);