C++装饰器模式

C++装饰器模式

#include <iostream>
using namespace std;
//装饰模式又叫包装模式,通过一种对客户端透明的方式来拓展对象功能,是继承关系的一种替代。
//装饰模式就是要把附加的功能分别放在独立的类中,并让这个类包含要装饰的对象
class Hero //英雄类
{
public:
	virtual void ShowProperty() = 0;
public:
	int HP;//血量
	int AT;//攻击
	int DE;//防御
	int MG;//魔法
};
class Thor :public Hero //英雄雷神
{
public:
	Thor() {
		this->HP = 1000;
		this->AT = 180;
		this->DE = 500;
		this->MG = 800;
	}
	void ShowProperty() {
		cout << "血量:" << this->HP << endl;
		cout << "攻击:" << this->AT << endl;
		cout << "防御:" << this->DE << endl;
		cout << "魔法:" << this->MG << endl;
	}
};
class ChangeHero :public Hero {
public:
	ChangeHero(Hero*my){
		this->hero = my;
	}
	virtual void ShowProperty() {};
public:
	Hero*hero;
};
class Armour :public ChangeHero
{
public:
	Armour(Hero*heros):ChangeHero(heros){
		this->HP = this->hero->HP + 200;
		this->AT = this->hero->AT;
		this->DE = this->hero->DE + 500;
		this->MG = this->hero->MG;
		delete this->hero;
	}
	void ShowProperty() {
		cout << "血量:" << HP << endl;
		cout << "攻击:" << AT << endl;
		cout << "防御:" << DE << endl;
		cout << "魔法:" << MG << endl;
	}
};
void test() {
	Hero*my = new Thor;
	my->ShowProperty();
	my = new Armour(my);
	my->ShowProperty();
	delete my;
}
void main() {
	test();
}

效果图:
在这里插入图片描述

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值