home *** CD-ROM | disk | FTP | other *** search
/ Prima Shareware 3 / DuCom_Prima-Shareware-3_cd1.bin / PROGRAMO / C / ECKELT / 2 / FRIEND.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1995-02-23  |  2.4 KB  |  80 lines

  1. // File from page 130 in "Thinking in C++" by Bruce Eckel
  2. //////////////////////////////////////////////////
  3. // From the compressed package ECKELT01.ZIP 2/21/95
  4. // Copyright (c) Bruce Eckel, 1995 
  5. // Source code file from the book "Thinking in C++", 
  6. // Prentice Hall, 1995, ISBN: 0-13-917709-4
  7. // All rights reserved EXCEPT as allowed by the following 
  8. // statements: You may freely use this file for your own 
  9. // work, including modifications and distribution in 
  10. // executable form only. You may copy and distribute this 
  11. // file, as long as it is only distributed in the complete 
  12. // (compressed) package with the other files from this 
  13. // book and you do not remove this copyright and notice. 
  14. // You may not distribute modified versions of the source 
  15. // code in this package. This package may be freely placed 
  16. // on bulletin boards, internet nodes, shareware disks and 
  17. // product vendor disks. You may not use this file in 
  18. // printed media without the express permission of the 
  19. // author. Bruce Eckel makes no 
  20. // representation about the suitability of this software 
  21. // for any purpose. It is provided "as is" without express 
  22. // or implied warranty of any kind. The entire risk as to 
  23. // the quality and performance of the software is with 
  24. // you. Should the software prove defective, you assume 
  25. // the cost of all necessary servicing, repair, or 
  26. // correction. 
  27. // If you think you've found an error, please 
  28. // email all modified files with loudly commented changes 
  29. // to: eckel@aol.com (please use the same 
  30. // address for non-code errors found in the book).
  31. //////////////////////////////////////////////////
  32.  
  33. //: FRIEND.CPP -- Friend allows special access
  34.  
  35. struct X; // Declaration (incomplete type spec)
  36.  
  37. struct Y {
  38.   void f(X*);
  39. };
  40.  
  41. struct X { // Definition
  42. private:
  43.   int i;
  44. public:
  45.   void initialize();
  46.   friend void g(X*, int); // Global friend
  47.   friend void Y::f(X*);  // Struct member friend
  48.   friend struct Z; // Entire struct is a friend
  49.   friend void h();
  50. };
  51.  
  52. void X::initialize() { i = 0; }
  53.  
  54. void g(X* x, int i) { x->i = i; }
  55.  
  56. void Y::f(X* x) { x->i = 47; }
  57.  
  58. struct Z {
  59. private:
  60.   int j;
  61. public:
  62.   void initialize();
  63.   void g(X* x);
  64. };
  65.  
  66. void Z::initialize() { j = 99; }
  67.  
  68. void Z::g(X* x) { x->i += j; }
  69.  
  70. void h() {
  71.   X x;
  72.   x.i = 100; // Direct data manipulation
  73. }
  74.  
  75. main() {
  76.   X x;
  77.   Z z;
  78.   z.g(&x);
  79. }
  80.