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

书籍源码

开发平台:

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 <iostream>
  30. using std::ostream; using std::cout; using std::endl;
  31. #include <string>
  32. // class that has a pointer member that behaves like a plain pointer
  33. class HasPtr {
  34. public:
  35.     friend ostream& operator<<(ostream&, const HasPtr&);
  36.     // copy of the values we're given
  37.     HasPtr(int *p, int i): ptr(p), val(i) { }
  38.     // const members to return the value of the indicated data member
  39.     int *get_ptr() const { return ptr; }     
  40.     int get_int() const { return val; }
  41.     // nonconst members to change the indicated data member
  42.     void set_ptr(int *p) { ptr = p; }
  43.     void set_int(int i) { val = i; }
  44.     // return or change the value pointed to, so ok for const objects
  45.     int get_ptr_val() const { return *ptr; } 
  46.     void set_ptr_val(int val) const { *ptr = val; }
  47. private:
  48.     int *ptr;
  49.     int val;
  50. };
  51. void show_copy_control()
  52. {
  53.     int i = 42;
  54.     HasPtr p1(&i, 42);
  55.     HasPtr p2 = p1;
  56.     cout << p2.get_ptr_val() << endl;
  57.     p1.set_ptr_val(0);
  58.     cout << p2.get_ptr_val() << endl;
  59. }
  60. int main()
  61. {
  62.     show_copy_control();
  63.     int obj = 0;
  64.     HasPtr ptr1(&obj, 42);  // int* member points to obj, val is 42
  65.     HasPtr ptr2(ptr1);      // int* member points to obj, val is 42
  66.     cout << "(1) ptr1: " << ptr1 << endl << "ptr2: " << ptr2 << endl;
  67.     ptr1.set_ptr_val(42); // sets object to which both ptr1 and ptr2 point
  68.     ptr2.get_ptr_val();   // returns 42
  69.     cout << "(2) ptr1: " << ptr1 << endl << "ptr2: " << ptr2 << endl;
  70.     ptr1.set_int(0);   // changes val member only in ptr1
  71.     ptr2.get_int();    // returns 42
  72.     ptr1.get_int();    // returns 0
  73.     cout << "(3) ptr1: " << ptr1 << endl << "ptr2: " << ptr2 << endl;
  74.     int *ip = new int(42); // dynamically allocated int initialized to 42
  75.     HasPtr ptr(ip, 10);    // HasPtr points to same object as ip does
  76.     delete ip;             // object pointed to by ip is freed
  77.     ptr.set_ptr_val(0); // disaster: The object to which HasPtr points was freed!
  78.     // this statement or the previous one are likely to crash -- 
  79.     // the object to which ptr points was deleted
  80.     cout << "(4) ptr: " << ptr << endl; 
  81.     return 0;
  82. }
  83. ostream& operator<<(ostream &os, const HasPtr &hp)
  84. {
  85.     cout << "*ptr: " << hp.get_ptr_val() << "tval: " << hp.get_int() << endl;
  86.     return os;
  87. }