c++11工厂子类实现自注册的两种方法

2024-09-08 09:18

本文主要是介绍c++11工厂子类实现自注册的两种方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

文章目录

    • 一、产品类构建
      • 1. 猫基类与各品种猫子类
      • 2.狗基类与各品种狗子类
    • 二、工厂类构建
    • 三、客户端使用switch-case实现调用不同工厂子类
    • 四、自注册方法一:公开注册函数显式注册
    • 五、自注册方法二:构造函数隐形注册
    • 总结

一、产品类构建

1. 猫基类与各品种猫子类

class Cat {
public:virtual void Printer() = 0;
};class Persian : public Cat {
public:virtual void Printer() {std::cout<<"I am a cat, persian."<<std::endl;}
};class Birman : public Cat {
public:virtual void Printer() {std::cout<<"I am a cat, Birman."<<std::endl;}
};class NorwegianForestCat : public Cat {
public:virtual void Printer() {std::cout<<"I am a Norwegian Forest Cat."<<std::endl;}
};class Ragdoll : public Cat {
public:virtual void Printer() {std::cout<<"I am a Cat, Ragdoll."<<std::endl;}
};class Himalayan : public Cat {
public:virtual void Printer() {std::cout<<"I am a Cat, Himalayan."<<std::endl;}
};

2.狗基类与各品种狗子类

class Dog {
public:virtual void Printer() = 0;
};class Affenpinscher : public Dog {
public:virtual void Printer() {std::cout<<"I am a Dog, Affenpinscher"<<std::endl;;}
};class AfghanHound  : public Dog {
public:virtual void Printer() {std::cout<<"I am a Dog, Afghan Hound "<<std::endl;;}
};class AiredaleTerrier  : public Dog {
public:virtual void Printer() {std::cout<<"I am a Dog, Airedale Terrier "<<std::endl;;}
};class Akita  : public Dog {
public:virtual void Printer() {std::cout<<"I am a Dog, Akita "<<std::endl;;}
};class AlaskanMalamute  : public Dog {
public:virtual void Printer() {std::cout<<"I am a Dog, Alaskan Malamute "<<std::endl;;}
};

二、工厂类构建

现在假设有五家动物繁育工厂,Animal1Factory,Animal2Factory,Animal3Factory,Animal4Factory,Animal5Factory。

  • Animal1Factoryt负责繁育的品种猫与狗分别为:Persian与Affenpinscher;
  • Animal2Factory负责繁育的品种猫与狗分别为:Birman与AfghanHound;
  • Animal3Factory负责繁育的品种猫与狗分别为:NorwegianForestCat与AiredaleTerrier;
  • Animal4Factory负责繁育的品种猫与狗分别为:Ragdoll与Akita;
  • Animal5Factory负责繁育的品种猫与狗分别为:Himalayan与AlaskanMalamute。

可构建动物繁育工厂基类:

class AnimalFactory {
public:virtual Cat *produceCat() = 0;virtual Dog *produceDog() = 0;
}; 

其他五个动物繁育工厂子类构建如下:

class Animal1Factory : public AnimalFactory{
public:Cat *produceCat(){return new Persian();}Dog *produceDog(){return new Affenpinscher();}
}; class Animal2Factory : public AnimalFactory{
public:Cat *produceCat(){return new Birman();}Dog *produceDog(){return new AfghanHound();}   
};class Animal3Factory : public AnimalFactory{
public:Cat *produceCat(){return new Ragdoll();}Dog *produceDog(){return new AiredaleTerrier();}   
};class Animal4Factory : public AnimalFactory{
public:Cat *produceCat(){return new NorwegianForestCat();}Dog *produceDog(){return new Akita();}   
};
class Animal5Factory : public AnimalFactory{
public:Cat *produceCat(){return new Himalayan();}Dog *produceDog(){return new AlaskanMalamute();}   
};

三、客户端使用switch-case实现调用不同工厂子类

对以上构建的各产品类与工厂类,可在客户端使用switch-case根据不同的key去创建不同的派生工厂类对象,实现产生该工厂繁育的品种猫与狗。

int main(int argc, char **argv)
{for (size_t i = 0; i < 100; i++){AnimalFactory* factory = 0;int factory_name;std::cout<<"please input the factory index: ";std::cin>>factory_name;switch (factory_name) {case 1:factory = new Animal1Factory();break;case 2:factory = new Animal2Factory();break;case 3:factory = new Animal3Factory();break;case 4:factory = new Animal4Factory();break;case 5:factory = new Animal5Factory();break;default:break;}if (factory != 0){Cat* cat = factory->produceCat();Dog* dog = factory->produceDog();cat->Printer();dog->Printer();}        }return 0;
}

输出如下:
在这里插入图片描述

如果工厂子类个数已经确定,个数也不多的时候,用switch-case来调用工厂子类没啥问题。但是,随着工厂子类数越来越多,这个switch-case结构就显得有点傻了。例如,一个具有将近100多个工厂子类库,维护这样一个switch-case简直是肉疼。并且,switch-case调用工厂子类方式对于需要突然新增工厂子类的项目非常不友好。下面将要介绍的工厂子类自注册方法,便是解决该问题的一个很好的途径。

四、自注册方法一:公开注册函数显式注册

这是介绍的两种自注册方法之一,利用类内的公开注册函数显示注册工厂子类。另一种是在构造函数中隐式注册自己。我个人更加偏爱于后者。

自注册的方法,将各子类共用一个注册表,在构造完后与实例化前,将子类注册进全局的注册表。

  • 对工厂基类新增一些功能函数,用来注册新的工厂子类,并从注册表中获取某一子类:
class AnimalFactory {
public:virtual Cat *produceCat() = 0;virtual Dog *produceDog() = 0;static AnimalFactory* GetInstance(std::string name){_instance = LookUp(name);return _instance;}static void Register(const std::string name, AnimalFactory* func){AnimalFactory* regist = LookUp(name); // 防止重复注册,保证各子类的唯一性if (regist != NULL){return;}else{registry_.insert(std::make_pair(name, func));}}
protected: static AnimalFactory* LookUp(std::string name){std::map<std::string, AnimalFactory*>::iterator iter = registry_.find(name);if (iter != registry_.end())return iter->second;elsereturn NULL;        }
private:static std::map<std::string, AnimalFactory*> registry_; static AnimalFactory* _instance;
}; AnimalFactory* AnimalFactory::_instance = NULL;
std::map<std::string, AnimalFactory*> AnimalFactory::registry_;
  • 各工厂子类增加静态函数static void Regist() ,具体代码如下所示:
class Animal1Factory : public AnimalFactory{
public:Cat *produceCat(){return new Persian();}Dog *produceDog(){return new Affenpinscher();}static void Regist(){AnimalFactory::Register("Animal1Factory", new Animal1Factory());}   
}; class Animal2Factory : public AnimalFactory{
public:Cat *produceCat(){return new Birman();}Dog *produceDog(){return new AfghanHound();}static void Regist(){AnimalFactory::Register("Animal2Factory", new Animal2Factory());}   
};class Animal3Factory : public AnimalFactory{
public:Cat *produceCat(){return new Ragdoll();}Dog *produceDog(){return new AiredaleTerrier();}static void Regist(){AnimalFactory::Register("Animal3Factory", new Animal3Factory());}    
};class Animal4Factory : public AnimalFactory{
public:Cat *produceCat(){return new NorwegianForestCat();}Dog *produceDog(){return new Akita();}static void Regist(){AnimalFactory::Register("Animal4Factory", new Animal4Factory());}       
};class Animal5Factory : public AnimalFactory{
public:Cat *produceCat(){return new Himalayan();}Dog *produceDog(){return new AlaskanMalamute();}static void Regist(){AnimalFactory::Register("Animal5Factory", new Animal5Factory());}       
};
  • 客户端调用工厂子类如下:
static void before_main()
{std::cout<<"regist sub factory..."<<std::endl;Animal1Factory::Regist();Animal2Factory::Regist();Animal3Factory::Regist();Animal4Factory::Regist();Animal5Factory::Regist();
}int main(int argc, char **argv)
{before_main();for (size_t i = 0; i < 100; i++){AnimalFactory* factory = 0;std::string factory_name;std::cout<<"please input the factory name: ";std::cin>>factory_name;factory = AnimalFactory::GetInstance(factory_name);if (factory != 0){Cat* cat = factory->produceCat();Dog* dog = factory->produceDog();cat->Printer();dog->Printer();}        }return 0;
}

输出如下:
在这里插入图片描述

五、自注册方法二:构造函数隐形注册

上面介绍的自注册方法,需要在使用工厂子类前,在客户端对各子类进行一个显式可见的注册。这样做对于使用它们的客户仍不是很友好。现在介绍一种在构造函数内隐形注册的方法,此方法不需要用户在客户端对各工厂子类进行注册。

  • 工厂基类与第一种自注册方法一样

  • 各子类工厂的构造函数中添加Animal1Factory(){AnimalFactory::Register("Animal1Factory", this);},并在子类未尾添加该子类的一个静态实例,具体代码如下:

class Animal1Factory : public AnimalFactory{
public:Cat *produceCat(){return new Persian();}Dog *produceDog(){return new Affenpinscher();}Animal1Factory(){AnimalFactory::Register("Animal1Factory", this);}
}; 
static Animal1Factory animal1factory;class Animal2Factory : public AnimalFactory{
public:Cat *produceCat(){return new Birman();}Dog *produceDog(){return new AfghanHound();}Animal2Factory(){AnimalFactory::Register("Animal2Factory", this);}      
};
static Animal2Factory animal2factory; // 添加一个静态实例,实现该子类的注册class Animal3Factory : public AnimalFactory{
public:Cat *produceCat(){return new Ragdoll();}Dog *produceDog(){return new AiredaleTerrier();}Animal3Factory(){AnimalFactory::Register("Animal3Factory", this);}      
};
static Animal3Factory animal3factory;class Animal4Factory : public AnimalFactory{
public:Cat *produceCat(){return new NorwegianForestCat();}Dog *produceDog(){return new Akita();}Animal4Factory(){AnimalFactory::Register("Animal4Factory", this);}      
};
static Animal4Factory animal4factory;class Animal5Factory : public AnimalFactory{
public:Cat *produceCat(){return new Himalayan();}Dog *produceDog(){return new AlaskanMalamute();}Animal5Factory(){AnimalFactory::Register("Animal5Factory", this);}       
};
static Animal5Factory animal5factory;
  • 客户端调用工厂子类如下(注意,此时已经在客户端见不到注册的痕迹):
int main(int argc, char **argv)
{for (size_t i = 0; i < 100; i++){AnimalFactory* factory = 0;std::string factory_name;std::cout<<"please input the factory name: ";std::cin>>factory_name;factory = AnimalFactory::GetInstance(factory_name);if (factory != 0){Cat* cat = factory->produceCat();Dog* dog = factory->produceDog();cat->Printer();dog->Printer();}        }return 0;
}

输出:
在这里插入图片描述

总结

利用C++工厂方法,可以灵活的实现丰富的功能。正如工厂方法里的名词:工厂-产品,工厂负责生产产品。不同的工厂会产生同样类型的产品,就像衣服有很多种品牌(工厂),然后,衣服也粗分为裤子、外套等(产品)。在工厂-产品模式下,自注册其实分为两层:1)新产品越来越多,需要对新产品进行注册;2)新增加的品牌也会越来越多,需要对新工厂进行注册。网上对前一种注册应用介绍较多,因此,本文在工厂子类自注册应用背景下对自注册方法进行介绍。自注册避免了客户端调用冗长的switch-case,其中利用公开注册函数仍需要在正式使用子类前,对各子类进行注册,构造函数注册法则将注册隐藏在类文件中,当新工厂出现时,客户代码具有最好的兼容性。

这篇关于c++11工厂子类实现自注册的两种方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1147707

相关文章

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

【C++ Primer Plus习题】13.4

大家好,这里是国中之林! ❥前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到网站。有兴趣的可以点点进去看看← 问题: 解答: main.cpp #include <iostream>#include "port.h"int main() {Port p1;Port p2("Abc", "Bcc", 30);std::cout <<

C++包装器

包装器 在 C++ 中,“包装器”通常指的是一种设计模式或编程技巧,用于封装其他代码或对象,使其更易于使用、管理或扩展。包装器的概念在编程中非常普遍,可以用于函数、类、库等多个方面。下面是几个常见的 “包装器” 类型: 1. 函数包装器 函数包装器用于封装一个或多个函数,使其接口更统一或更便于调用。例如,std::function 是一个通用的函数包装器,它可以存储任意可调用对象(函数、函数

C++11第三弹:lambda表达式 | 新的类功能 | 模板的可变参数

🌈个人主页: 南桥几晴秋 🌈C++专栏: 南桥谈C++ 🌈C语言专栏: C语言学习系列 🌈Linux学习专栏: 南桥谈Linux 🌈数据结构学习专栏: 数据结构杂谈 🌈数据库学习专栏: 南桥谈MySQL 🌈Qt学习专栏: 南桥谈Qt 🌈菜鸡代码练习: 练习随想记录 🌈git学习: 南桥谈Git 🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈�

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

06 C++Lambda表达式

lambda表达式的定义 没有显式模版形参的lambda表达式 [捕获] 前属性 (形参列表) 说明符 异常 后属性 尾随类型 约束 {函数体} 有显式模版形参的lambda表达式 [捕获] <模版形参> 模版约束 前属性 (形参列表) 说明符 异常 后属性 尾随类型 约束 {函数体} 含义 捕获:包含零个或者多个捕获符的逗号分隔列表 模板形参:用于泛型lambda提供个模板形参的名

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount