• 大小: 2.80KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 语言: C/C++
  • 标签:

资源简介

C++实战源码-祖先的止痒药方(入门级实例208).zip

资源截图

代码片段和文件信息

// Ancestor.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“
#include “iostream.h“

class Ancestor {
private:
char* prescription;//定义药方
public:
Ancestor(){prescription = “吃中药“;}
protected:
char* getPrescription() {//获得药方
        return prescription;
    }
};

class Child :public Ancestor {
public:
void Out() {
        cout << “获得祖先的止痒药方:“ << endl;
        cout << getPrescription() << endl;//输出药方
    }
};


int main(int argc char* argv[])
{
Child ch;
ch.Out();
return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         577  2010-10-13 19:33  Ancestor\Ancestor.cpp
     文件        4560  2010-10-13 19:27  Ancestor\Ancestor.dsp
     文件         541  2010-10-13 19:27  Ancestor\Ancestor.dsw
     文件         295  2010-10-13 19:27  Ancestor\StdAfx.cpp
     文件         769  2010-10-13 19:27  Ancestor\StdAfx.h

评论

共有 条评论