2012年5月23日
摘要: classParent.h头文件#ifndef PARENT_H#define PARENT_Hclass classParent{public:classParent(){}protected:private:int inumOfParent;};#endif"classChild.h"头文件#ifndef CHILD_H#define CHILD_H#include "classParent.h"class classChild:public classParent{public:classChild(){}~classChild(){};priva 阅读全文
posted @ 2012-05-23 23:02 kunkka_ 阅读(141) 评论(0) 推荐(0) 编辑