Chinaunix首页 | 论坛 | 博客
  • 博客访问: 49670
  • 博文数量: 12
  • 博客积分: 291
  • 博客等级: 二等列兵
  • 技术积分: 147
  • 用 户 组: 普通用户
  • 注册时间: 2010-05-15 14:25
文章分类

全部博文(12)

文章存档

2011年(12)

我的朋友

分类: C/C++

2011-10-10 22:15:52

如果我们定义一个派生类的对象,那么基类的this和派生类的this是不是都指向这个派生类对象呢?
为回答这个问题,我编写了如下代码:
  1. #include <tchar.h>
  2. #include <iostream>
  3. using namespace std;

  4. class Person
  5. {
  6. public:
  7.     void PersonPrint()
  8.     {
  9.         cout << _T("基类的Print函数被调用") << endl;
  10.         cout << sizeof(*this) << endl;
  11.     }

  12. private:
  13.     double m_dWeight;
  14. };

  15. class Men: public Person
  16. {
  17. public:
  18.     void MenPrint()
  19.     {
  20.         cout << _T("派生类的Print函数被调用") << endl;
  21.         cout << sizeof(*this) << endl;
  22.     }

  23. private:
  24.     double m_dHeight;
  25. };

  26. int _tmain(int argc, TCHAR argv[], TCHAR envp[])
  27. {
  28.     Men Mike;
  29.     Mike.PersonPrint();
  30.     Mike.MenPrint();
  31.     return 0;
  32. }
上述代码的执行结果如下:

从结果中我们可以推断出:
基类中的this指向的是派生类对象中的基类部分;
派生类中的this指向的是派生类对象。
阅读(489) | 评论(0) | 转发(0) |
0

上一篇:基类的构造函数带参数,如何定义其派生类

下一篇:没有了

给主人留下些什么吧!~~