当前位置:   article > 正文

C++软件实现架构----工厂方法模式_c++工厂模式与框架

c++工厂模式与框架

工厂模式目的是在父类中创建对象的方法,在子类中实现具体实例对象

例如我们要实现不同品种的猫咪,对于父类猫来说:

  1. class Cat{
  2. typedef enum Color{
  3. RED,
  4. BLUE,
  5. BLACK,
  6. YELLOW
  7. };
  8. private:
  9. Color m_hair_color;
  10. Color m_eye_color;
  11. int m_shape;
  12. int m_hair_lenght;
  13. public:
  14. explicit Cat(Color hair, Color eye, int shape, int hair_length);
  15. virtual ~Cat();
  16. virtual const void Run(int speed) const = 0;
  17. virtual const void Grab(int power) const = 0;
  18. virtual const void Sleep(int time) const = 0;
  19. virtual const int Eat(String food) const = 0;
  20. virtual const bool Excrete(String place) const = 0;
  21. }

我设计了作为一只猫咪应有的特征,包括区分猫咪品种的毛发眼睛颜色以及毛发长度体型等

而对于猫咪的public函数,运动吃睡即是如此

如果我们要将该类扩展为子类布偶猫时,大致代码如下:

  1. class Ragdollpublic Cat{
  2. private:
  3. int m_healthy_percent;
  4. public:
  5. explicit Ragdoll (Color hair, Color eye, int shape, int hair_length, int healthy_p) : Cat(hair, eye,
  6. shape, hair_length){
  7. m_hair_color = hair;
  8. m_eye_color = eye;
  9. m_shape = shape;
  10. m_hair_length = hair_length;
  11. m_healthy_percent = healthy_p;
  12. }
  13. ~Ragdoll (){
  14. m_hair_color = null;
  15. m_eye_color = null;
  16. m_shape = null;
  17. m_hair_length = null;
  18. m_healthy_percent = null;
  19. }
  20. const void Run(int speed) const override final{
  21. //run;
  22. }
  23. const void Grab(int power) override final{
  24. //grab;
  25. }
  26. const void Sleep(int time) override final{
  27. //sleep as long as time
  28. }
  29. int Eat(String food) override final{
  30. //eat food;
  31. int p_full = food/stomach;
  32. return p_full;
  33. }
  34. bool Excrete(String place) override final;
  35. //excete in place
  36. return if(excete);
  37. }
  38. bool IsHealthy(){
  39. if(m_healthy_percent){
  40. return true;
  41. }else return false;
  42. }

这两段代码最大的区别就是布偶猫在普通猫咪的基础上多调用了一个名为m_healthy_percent的成员变量,私以为布偶容易生病,远不及其他猫咪尤其田园猫的身体健康,对于其他的父类函数均在子类中实现(一定要实现,就算没用也要实现,其次如果不加override final就意味着对于cat的子类的子类来说还需要继承这个函数),而布偶猫只是自己多了一个外部调用的判断是否生病的接口

工厂方法核心思想:耦合性相当强的代码可以抓住其大多数共同特点来创建基类和基类的虚函数接口

          然后在子类中具体实现这些接口

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/162819?site
推荐阅读
相关标签
  

闽ICP备14008679号