当前位置:网站首页>工厂方法模式
工厂方法模式
2022-08-02 12:33:00 【l_ethan】
简介:工厂方法模式的意义是定义一个创建产品对象的工厂接口,将实际创建工作推迟到子类当中。核心工厂类不在负责产品的创建,这样核心类成为一个抽象工厂角色,仅负责具体工厂子类必须实现的接口,这样进一步抽象化的好处是使得工厂方法模式可以使系统在不修改具体工厂角色的情况下引进新的产品。
工厂方法模式是简单工厂模式的衍生,解决了许多简单工厂模式的问题。首先完全实现’开-闭‘原则,实现了可拓展。
优点:
1.不需要记住具体类名
2.实现了对象创建和使用的分离
3.系统的可扩展性也就变地非常好无需修改接口和原类。
缺点:
1.增加系统中类的个数,复杂度和理解度增加
2.增加了系统的抽象性和理解难度
案例:
#include <iostream>
using namespace std;
class AbstractFruit {
public:
virtual void show() = 0;
};
class Apple :public AbstractFruit {
public:
virtual void show() {
cout << "apple" << endl;
}
};
class Banana :public AbstractFruit {
public:
virtual void show() {
cout << "banana" << endl;
}
};
class AbstractFruitFactor {
public:
virtual AbstractFruit* createfruit()=0;
};
class AppleFactor :public AbstractFruitFactor {
public:
virtual AbstractFruit* createfruit() {
return new Apple;
}
};
class BananaFactor :public AbstractFruitFactor {
public:
virtual AbstractFruit* createfruit() {
return new Banana;
}
};
int main()
{
AbstractFruitFactor* af = nullptr;
AbstractFruit* f = nullptr;
af = new AppleFactor;
f = af->createfruit();
f->show();
delete af;
delete f;
return 0;
}
边栏推荐
- 网络流详解(流网图一般能够反映什么信息)
- PHP伪协议详解
- Import and export data of SQL Server database
- Seneor Exposure Basics
- Do you really understand the business process service BPass?
- Technology sharing | Description of the electronic fence function in the integrated dispatching system
- DTG-SSOD: The latest semi-supervised detection framework, Dense Teacher (with paper download)
- PHP+MYSQL【学生信息管理系统】(极简版)
- ssm access database data error
- 主流跨端技术一览
猜你喜欢
随机推荐
FreeRTOS实验--一个函数创建多个任务
DTG-SSOD: The latest semi-supervised detection framework, Dense Teacher (with paper download)
LeetCode_139_word split
SQL Server 数据库之导入导出数据
WPF——自定义日历
0801~面试题梳理
数据湖(三):Hudi概念术语
FreeRTOS--Priority Experiment
Pod调度策略:亲和性、污点与污点容忍
Drools(8):WorkBench使用
Solve the problem of Chinese garbled characters in exporting excel file names
基础协议讲解
Likou 35 - search for insertion position - binary search
Swiper系列之轮播图
unique in numpy & pandas
智能图像分析-智能家用电器图像目标检测统计计数检测与识别-艾科瑞特科技(iCREDIT)
Data Lake (2): What is Hudi
以Boost为例的type3电压环补偿器实例
新特性解读 | MySQL 8.0 GIPK 不可见主键
After Effects 教程,如何在 After Effects 中对蒙版进行动画绘制?