Chinaunix首页 | 论坛 | 博客
  • 博客访问: 630973
  • 博文数量: 1008
  • 博客积分: 10
  • 博客等级: 民兵
  • 技术积分: 5175
  • 用 户 组: 普通用户
  • 注册时间: 2012-07-31 09:44
文章分类
文章存档

2012年(1008)

我的朋友

分类:

2012-08-01 11:26:26

原文地址:类的嵌套简单应用 作者:luozhiyong131

  1. /***********************************************
  2. * 文件名:例六
  3. * 功能:类的嵌套
  4. * 说明:当数据成员的类型是另外一个已知类时
  5. * 时间:2011-3-29 --Lzy
  6. /***********************************************/
  7. #include <iostream.h>

  8. class ClassA
  9. {
  10. public:
  11.     int x;
  12.     ClassA(int xx)
  13.     {
  14.         cout<<"A is called"<<endl;
  15.         x = xx;
  16.     }
  17. };

  18. class ClassB
  19. {
  20. public:
  21.     ClassB();
  22.     ClassB(int, int);
  23.     void printf();

  24. private:
  25.     ClassA a;        //声明ClassA a对象为自己的私有成员

  26.     int b;
  27. };

  28. ClassB::ClassB():a(99)    //必须使用初始化式调用成员类的构造函数

  29. {
  30.         cout<<"B1 is called"<<endl;
  31.         b = 100;
  32. }

  33. ClassB::ClassB(int x, int y):a(x), b(y)    
  34. {
  35.         cout<<"B2 is called"<<endl;    
  36. }

  37. void ClassB::printf()
  38. {
  39.     cout<<"a="<<a.x<<" b="<<b<<endl;
  40. }

  41. void main()
  42. {
  43.     ClassB b1, b2(200, 220);
  44.     b1.printf();
  45.     b2.printf();
  46. }
阅读(135) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~