当前位置:编程学习 > VC++ >>

模板的使用

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);
补充:软件开发 , Vc ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,