DoubleLi

qq: 517712484 wx: ldbgliet

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2012年10月16日

摘要: #include "stdafx.h"#include "stdio.h"#include "string.h"class Father{public: name() {printf("father name\n");}; virtual call() {printf("father call\n");}; };class Son: public Father{public: name() {printf("Son name\n");}; virtual call() {pr 阅读全文
posted @ 2012-10-16 22:57 DoubleLi 阅读(325) 评论(0) 推荐(0)