ch20_1.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:
C#编程
开发平台:
Visual C++
- //**********************
- //** ch20_1.cpp **
- //**********************
- #include <iostream.h>
- template<class T>
- T max(T a,T b)
- {
- return a>b?a:b; //T类的>操作须有定义
- }
- void main()
- {
- cout <<"Max(3,5) is "
- <<max(3,5) <<endl;
- cout <<"Max('3','5') is "
- << max('3','5') <<endl;
- }