overcomp.cpp
上传用户:qdkongtiao
上传日期:2022-06-29
资源大小:356k
文件大小:5k
源码类别:

书籍源码

开发平台:

Visual C++

  1. /*
  2.  * This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
  3.  * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
  4.  * copyright and warranty notices given in that book:
  5.  * 
  6.  * "Copyright (c) 2005 by Objectwrite, Inc., Jose Lajoie, and Barbara E. Moo."
  7.  * 
  8.  * 
  9.  * "The authors and publisher have taken care in the preparation of this book,
  10.  * but make no expressed or implied warranty of any kind and assume no
  11.  * responsibility for errors or omissions. No liability is assumed for
  12.  * incidental or consequential damages in connection with or arising out of the
  13.  * use of the information or programs contained herein."
  14.  * 
  15.  * Permission is granted for this code to be used for educational purposes in
  16.  * association with the book, given proper citation if and when posted or
  17.  * reproduced.Any commercial use of this code requires the explicit written
  18.  * permission of the publisher, Addison-Wesley Professional, a division of
  19.  * Pearson Education, Inc. Send your request for permission, stating clearly
  20.  * what code you would like to use, and in what specific way, to the following
  21.  * address: 
  22.  * 
  23.  *  Pearson Education, Inc.
  24.  *  Rights and Contracts Department
  25.  *  75 Arlington Street, Suite 300
  26.  *  Boston, MA 02216
  27.  *  Fax: (617) 848-7047
  28. */ 
  29. #include <vector>
  30. using std:: vector;
  31. #include <iostream>
  32. using std::cout; using std::endl;
  33. #include <string>
  34. using std::string;
  35. // implement strcmp-like generic compare function 
  36. template <typename T> int compare2(T, T);
  37. template <typename T> int compare2(T v1, T v2)
  38. {
  39.     // as before
  40. cout << "compare2(T, T)" << endl;
  41. if (v1 < v2) return -1;
  42. if (v2 < v1) return 1;
  43. return 0;
  44. }
  45. // plain functions to handle C-style character strings
  46. int compare2(const char* v1, const char* v2)
  47. {
  48. cout << "compare2(const char*, const char*)" << endl;
  49. return strcmp(v1, v2);
  50. }
  51. // compares two objects
  52. template <typename T> int compare(const T&, const T&);
  53. // compares elements in two sequences
  54. template <class U, class V> int compare(U, U, V);
  55. // plain functions to handle C-style character strings
  56. int compare(const char*, const char*);
  57. // compares two objects
  58. template <typename T> int compare(const T &v1, const T &v2)
  59. {
  60. cout << "compare(const T&, const T&)" << endl;
  61. if (v1 < v2) return -1;
  62. if (v2 < v1) return 1;
  63. return 0;
  64. }
  65. // compares elements in two sequences
  66. template <class U, class V> int compare(U beg1, U end1, V beg2)
  67. {
  68. cout << "compare(U, U, V)" << endl;
  69. while (beg1 != end1) {
  70. if (*beg1 < *beg2) return -1;
  71. if (*beg2 < *beg1) return 1;
  72. ++beg1; ++beg2;
  73. }
  74. return 0;  // if we got here, the two sequences are equal
  75. }
  76. // plain functions to handle C-style character strings
  77. int compare(const char* v1, const char* v2)
  78. {
  79. cout << "compare(const char*, const char*)" << endl;
  80. return strcmp(v1, v2);
  81. }
  82. int main()
  83. {
  84. cout << "calling  compare(1, 0);" << endl;
  85. // calls compare(const T&, const T&) with T bound to int
  86. compare(1, 0);     
  87. cout << "ncalling  compare(vector iters);" << endl;
  88. // calls compare(U, U, V), with U and V bound to vector<int>::iterator
  89. vector<int> ivec1(10), ivec2(20);
  90. compare(ivec1.begin(), ivec1.end(), ivec2.begin());
  91. int ia1[] = {0,1,2,3,4,5,6,7,8,9};
  92. // calls compare(U, U, V) with U bound to int* 
  93. // and V bound to vector<int>::iterator
  94. compare(ia1, ia1 + 10, ivec1.begin());
  95. cout << "ncalling  compare(const_arr1, const_arr2);" << endl;
  96. // calls the ordinary function taking const char* parameters
  97. const char const_arr1[] = "world", const_arr2[] = "hi";
  98. compare(const_arr1, const_arr2); 
  99. cout << "ncalling  compare(s1, s2);" << endl;
  100. // calls compare(const T&,const T&) with T bound to string
  101. string s1 = "hi", s2 = "world";
  102. compare(s1, s2);
  103. cout << "ncalling  compare(ch_arr1, ch_arr2);" << endl;
  104. // calls the ordinary function taking const char* parameters
  105. char ch_arr1[] = "world", ch_arr2[] = "hi";
  106. compare(ch_arr1, ch_arr2); 
  107. cout << "ncalling  compare(p1, p2);" << endl;
  108. char *p1 = ch_arr1, *p2 = ch_arr2;
  109. compare(p1, p2);
  110. cout << "ncalling  compare(ch_arr1, const_arr1);" << endl;
  111. cout << "calling  compare(ch_arr2, const_arr1);" << endl;
  112. cout << "calling  compare(0, 0);" << endl;
  113. compare(ch_arr1, const_arr1);
  114. compare(ch_arr2, const_arr2);
  115. compare(0, 0);
  116. cout << "ncalling  compare2(ch_arr1, ch_arr2);" << endl;
  117. cout << "calling  compare2(p1, p2);" << endl;
  118. cout << "calling  compare(const_arr1, const_arr2);" << endl;
  119. cout << "calling  compare(cp1, cp2);" << endl;
  120. // calls compare2(T, T) with T bound to char*
  121. compare2(ch_arr1, ch_arr2); 
  122. // calls compare2(T, T) with T bound to char*
  123. compare2(p1, p2); 
  124. // calls the ordinary function taking const char* parameters
  125. compare2(const_arr1, const_arr2); 
  126. const char *cp1 = const_arr1, *cp2 = const_arr2;
  127. // calls the ordinary function taking const char* parameters
  128. compare2(cp1, cp2); 
  129. return 0;
  130. }