value-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. /*
  33.  * Valuelike behavior even though HasPtr has a pointer member:
  34.  * Each time we copy a HasPtr object, we make a new copy of the
  35.  * underlying int object to which ptr points.
  36. */
  37. class HasPtr {
  38. public:
  39.     // no point to passing a pointer if we're going to copy it anyway
  40.     // store pointer to a copy of the object we're given
  41.     HasPtr(const int &p, int i): ptr(new int(p)), val(i) {}
  42.     // copy members and increment the use count
  43.     HasPtr(const HasPtr &orig):
  44.        ptr(new int (*orig.ptr)), val(orig.val) { }
  45.     HasPtr& operator=(const HasPtr&);
  46.     // wrong: don't define a destructor without also defining copy and assign
  47.     ~HasPtr() { delete ptr; } 
  48.     friend ostream& operator<<(ostream&, const HasPtr&);
  49.     // accessors must change to fetch value from Ptr object
  50.     int get_ptr_val() const { return *ptr; } 
  51.     int get_int() const { return val; }
  52.     // change the appropriate data member
  53.     void set_ptr(int *p) { ptr = p; }
  54.     void set_int(int i)  { val = i; }
  55.     // return or change the value pointed to, so ok for const objects
  56.     int *get_ptr() const { return ptr; } 
  57.     void set_ptr_val(int p) const { *ptr = p; }
  58. private:
  59.     int *ptr;        // points to an int
  60.     int val;
  61. };
  62. HasPtr& HasPtr::operator=(const HasPtr &rhs)
  63. {
  64.     // Note: Every HasPtr is guaranteed to point at an actual int;
  65.     //       We know that ptr cannot be a zero pointer
  66.     *ptr = *rhs.ptr;      // copy the value pointed to
  67.     val = rhs.val;        // copy the int 
  68.     return *this;
  69. }
  70. ostream& operator<<(ostream &os, const HasPtr &hp)
  71. {
  72.     os << "*ptr: " << hp.get_ptr_val() << "tval: " << hp.get_int() << endl;
  73.     return os;
  74. }
  75. int main()
  76. {
  77.     int obj = 0;
  78.     HasPtr ptr1(obj, 42);  // int* member points copy of obj, val is 42
  79.     HasPtr ptr2(ptr1);     // int* member points new copy obj, val is 42
  80.     cout << "(1) ptr1: " << ptr1 << endl << "ptr2: " << ptr2 << endl;
  81.     ptr1.set_ptr_val(42); // sets copy in ptr1; value in ptr2 unchanged
  82.     ptr2.get_ptr_val();   // returns 0
  83.     cout << "(2) ptr1: " << ptr1 << endl << "ptr2: " << ptr2 << endl;
  84.     ptr1.set_int(0);   // changes val member only in ptr1
  85.     ptr2.get_int();    // returns 42
  86.     ptr1.get_int();    // returns 0
  87.     cout << "(3) ptr1: " << ptr1 << endl << "ptr2: " << ptr2 << endl;
  88.     int *ip = new int(42); // dynamically allocated int initialized to 42
  89.     HasPtr ptr(*ip, 10);    // HasPtr points to same object as ip does
  90.     delete ip;          // object pointed to by ip is freed
  91.     ptr.set_ptr_val(0); // ok: ptr has its own copy
  92.     cout << "(4) ptr: " << ptr << endl;
  93. }