/*
*Copyright (c) 2014, 烟台大学计算机学院
*All rights reserved.
*文件名称:test.cpp
*作者:于凯
*完成日期:2015年6月3日
*版本号:v1.0
*/
#include <iostream>
#include <string>
using namespace std;
class Animal
{
public:
virtual void cry()
{
cout<<"不知哪种动物,让我如何学叫?"<<endl;
}
};
class Mouse:public Animal
{
public:
Mouse(string nam,char s):name(nam),sex(s){}
void cry()
{
cout<<"我叫"<<name<<",是一只"<<((sex=='m')?"男":"女")<<"老鼠,我的叫声是:吱吱吱!\n";
}
private:
string name;
char sex;
};
class Cat:public Animal
{
public:
Cat(string nam):name(nam){}
void cry()
{
cout<<"我叫"<<name<<",是一只猫,我的叫声是:喵喵喵!\n";
}
private:
string name;
};
class Dog:public Animal
{
public:
Dog(string nam):name(nam){}
void cry()
{
cout<<"我叫"<<name<<",是一只狗,我的叫声是:汪汪汪!\n";
}
private:
string name;
};
class Giraffe:public Animal
{
public:
Giraffe(string nam,char s):name(nam),sex(s){}
void cry()
{
cout<<"我叫"<<name<<",是"<<((sex=='m')?"男":"女")<<"男长颈鹿,我的脖子太长,发不出声音来!\n";
}
private:
string name;
char sex;
};
int main( )
{
Animal *p;
p = new Animal();
p->cry();
Mouse m1("Jerry",'m');
p=&m1;
p->cry();
Mouse m2("Jemmy",'f');
p=&m2;
p->cry();
Cat c1("Tom");
p=&c1;
p->cry();
Dog d1("Droopy");
p=&d1;
p->cry();
Giraffe g1("Gill",'m');
p=&g1;
p->cry();
return 0;
}
运行结果:
本文通过具体的C++代码示例介绍了多态性的概念及其应用方式。通过继承和虚函数,不同类型的动物可以表现出不同的行为特征,展示了多态性在面向对象编程中的重要作用。

被折叠的 条评论
为什么被折叠?



