2015年3月22日

命名空间和模块化编程,头文件

摘要: #include #include #include "dynamic_memory.h"Company::Company(std::string theName){ name = theName;};void Company::printInfo(){ std::cout printI... 阅读全文

posted @ 2015-03-22 22:33 雨渐渐 阅读(186) 评论(0) 推荐(0) 编辑

对象3:继承

摘要: #include #include using namespace std;class Animal{public: string mouth; void eat(); void sleep(); void drool();};class Pig : public Anima... 阅读全文

posted @ 2015-03-22 15:16 雨渐渐 阅读(138) 评论(0) 推荐(0) 编辑

动态内存 this指针

摘要: #include #include class Company{public: Company(std::string theName); virtual void printInfo();protected: std::string name;};class TechCompan... 阅读全文

posted @ 2015-03-22 11:17 雨渐渐 阅读(210) 评论(0) 推荐(0) 编辑

导航