ch20_1.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //**********************
  2. //**    ch20_1.cpp    **
  3. //**********************
  4. #include <iostream.h>
  5. template<class T>
  6. T max(T a,T b)
  7. {
  8.   return a>b?a:b;       //T类的>操作须有定义
  9. }
  10. void main()
  11. {
  12.   cout <<"Max(3,5) is "
  13.        <<max(3,5) <<endl;
  14.   cout <<"Max('3','5') is "
  15.        << max('3','5') <<endl;
  16. }