6-1 多态性与虚函数

6-1 多态性与虚函数

Time Limit: 1000MS  Memory Limit: 65536KB
Submit  Statistic

Problem Description

通过本题目的练习可以掌握多态性的概念和虚函数的定义和使用方法

要求定义一个基类Pet,它有一个成员函数Speak()用于输出pet的叫声。;派生类DogCat从基类Pet派生而来。他们从基类继承并重新改写了speak()函数,分别用于输出Dog类和Cat类的叫声。要求利用虚函数编写代码,使得程序能够输出下面的内容。

Input

 

Output

 

输出数据共有3行,本题目要求输出内容必须与示例中的相同。

Example Input


Example Output

How does a pet speak ?
miao!miao!
wang!wang!

Hint

 

Author

 黄晶晶
#include
#include

using namespace std;

class Pet
{
public:
    virtual void speak()const=0;
};

class Cat:public Pet
{
public:
    virtual void speak()const
    {
        cout<<"miao!miao!"<


你可能感兴趣的:(c++)