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

书籍源码

开发平台:

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 <string>
  30. using std::string;
  31. #include <iostream>
  32. using std::cout; using std::endl;
  33. #include <cstring>
  34. int main() {
  35.     const char *cp1 = "A string example";
  36.     const char *cp2 = "A different string";
  37.     int i = strcmp(cp1, cp2);    // i is positive
  38.     i = strcmp(cp2, cp1);        // i is negative
  39.     i = strcmp(cp1, cp1);        // i is zero
  40.     cout << strlen(cp1) << endl; // prints 16; strlen ignores the null
  41.     if (cp1 < cp2)  // compares addresses, not the values pointed to
  42.      ;
  43.     char ca[] = {'C', '+', '+'};  // not null-terminated
  44.     cout << strlen(ca) << endl;   // disaster: ca isn't null-terminated
  45.                                   // behavior of this print statement is undefined
  46.     // Dangerous: What happens if we miscalculate the size of largeStr?
  47.     char largeStr[16 + 18 + 2]; // will hold cp1 a space and cp2
  48.     strcpy(largeStr, cp1);      // copies cp1 into largeStr
  49.     strcat(largeStr, " ");      // adds a space at end of largeStr
  50.     strcat(largeStr, cp2);      // concatenates cp2 to largeStr
  51.     // prints A string example A different string
  52.     cout << largeStr << endl;       
  53.     // Somewhat safer: use the ``strn'' versions to copy and concatenate
  54. {
  55.     char largeStr[16 + 18 + 2]; // to hold cp1 a space and cp2
  56.     strncpy(largeStr, cp1, 17); // size to copy includes the null
  57.     strncat(largeStr, " ", 2);  // pedantic, but a good habit
  58.     strncat(largeStr, cp2, 19); // adds at most 18 characters, plus a null
  59.     cout << largeStr << endl;       
  60. }
  61.     // Best approach: use strings not char arrays!
  62. {
  63.     string largeStr = cp1; // initialize largeStr as a copy of cp1
  64.     largeStr += " ";       // add space at end of largeStr
  65.     largeStr += cp2;       // concatenate cp2 onto end of largeStr
  66.     cout << largeStr << endl;       
  67. }
  68.     return 0;
  69. }