毒株的灭亡

#include <iostream>

using namespace std;

class Virus {

public:

Virus() {

cout << "I am the ancestor of the new virus!" << endl;

}

~Virus() {

cout << "I must disappear!" << endl;

}

virtual void eat()=0; //定义纯虚函数

};

class vOne : public Virus

{

public:

vOne() {

cout << "vOne is born." << endl;

}

~vOne() {

cout << "vOne is dead." << endl;

}

void eat() {

cout << "vOne is living in your body." << endl;

}

};

class vTwo : public Virus

{

public:

vTwo() {

cout << "vTwo is born." << endl;

}

~vTwo() {

cout << "vTwo is dead." << endl;

}

void eat() {

cout << "vTwo is living in your body." << endl;

}

};

int main() {

Virus *v; //定义父类指针v

vOne v1; //定义vOne对象v1

vTwo v2; //定义vTwo对象v2

v = &v1;

v->eat(); //通过父类指针调用eat()方法

v = &v2;

v->eat(); //通过父类指针调用eat()方法

cout << "Our immune system is kill v1 and v2..." << endl;

return 0;

}

全部评论

相关推荐

图源网络侵权删
dddooola:这个事情我去年8月就看到有人b站(up:程序员正义)在举报了,可能一直在查,这次是查明后的处分了
点赞 评论 收藏
分享
不会取名字的牛油:学历加大加粗,面试库库来
点赞 评论 收藏
分享
程序员小白条:找实习多投就行,但25届现在是春招时间呃呃呃,你想以后参加社招吗
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
正在热议
更多
牛客网
牛客企业服务