模板的使用

来源:岁月联盟 编辑:exp 时间:2012-08-31
1.定义一个比较两个数大小的模板
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);