Chinaunix首页 | 论坛 | 博客
  • 博客访问: 360884
  • 博文数量: 79
  • 博客积分: 1270
  • 博客等级: 中尉
  • 技术积分: 1370
  • 用 户 组: 普通用户
  • 注册时间: 2011-04-12 08:48
个人简介

freedom~~~~~~~~~~

文章分类

全部博文(79)

文章存档

2014年(10)

2013年(2)

2012年(13)

2011年(54)

分类: C/C++

2011-08-23 16:52:56

  1. #include<stdio.h>
  2. #include<stdlib.h>

  3. class base
  4. {
  5. public:
  6.     int type;
  7.     char * name;
  8.     int data;
  9.     virtual ~base(){};
  10.     base(){printf("hello wrold!\n");}
  11. };

  12. class child:public base
  13. {
  14. public:
  15.     int my;
  16.     void show()
  17.     {
  18.         printf("hello \tworld!,child!!!\n");
  19.     }
  20. };

  21. int main()
  22. {
  23.     base base1;
  24.     base base2;
  25.     base baseTable[2]={base1,base2};
  26.     dynamic_cast<child *>(&baseTable[1])->show();
  27.     return 1;
  28. }
阅读(832) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~