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

资源简介

C++实战源码-重写父类中的方法(入门级实例212).zip

资源截图

代码片段和文件信息

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

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

class Employee {
public:
char * getInfo() {//定义测试用的方法
        return “父类:我是明日科技的员工!“;
    }
};

class Manager : public Employee {
public:
char* getInfo() {//重写测试用的方法
        return “子类:我是明日科技的经理!“;
    }
};


int main(int argc char* argv[])
{
Employee employee; //创建Employee对象
cout << employee.getInfo() << endl; //输出Employee对象的getInfo()方法返回值
Manager manager; //创建Manager对象
cout << manager.getInfo() << endl; //输出Manager对象的getInfo()方法返回值

return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         680  2010-10-14 10:20  Override\Override.cpp
     文件        4560  2010-10-14 10:15  Override\Override.dsp
     文件         541  2010-10-14 10:15  Override\Override.dsw
     文件         295  2010-10-14 10:15  Override\StdAfx.cpp
     文件         769  2010-10-14 10:15  Override\StdAfx.h

评论

共有 条评论