template.cpp
上传用户:bjlvip
上传日期:2010-02-08
资源大小:744k
文件大小:0k
源码类别:

Windows编程

开发平台:

Visual C++

  1. #include <string.h>
  2. #include <iostream.h>
  3. template <class T>
  4. T inline max(T a, T b)
  5. {
  6. return (a > b) ? a : b;
  7. }
  8. template<> char* max(char* a, char* b)
  9. {
  10. return (strlen(a) > strlen(b)) ? a : b;
  11. }
  12. void main()
  13. {
  14. cout << max(10, 12) << endl;
  15. cout << max(10.8, 12.5) << endl;
  16. cout << max('a', 'b') << endl;
  17. cout << max(true, false) << endl;
  18. cout << max("hello", "goodbye") << endl;
  19. }