1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
| #include <iostream>
using namespace std;
class Box { double width; public: friend void printWidth(Box box); friend class BigBox; void setWidth(double wid); };
class BigBox { public : void Print(int width, Box &box) { box.setWidth(width); cout << "Width of box : " << box.width << endl; } };
void Box::setWidth(double wid) { width = wid; }
void printWidth(Box box) { cout << "Width of box : " << box.width << endl; }
int main() { Box box; BigBox big;
box.setWidth(10.0);
printWidth(box);
big.Print(20, box);
getchar(); return 0; }
|