当前位置:   article > 正文

C++实现适配器模式_适配器模适c++

适配器模适c++

概述:

适配器模式是一种结构性模式,它将一个类的接口转换成客户需要的接口,使得原来由于接口不兼容而不能一起工作的类可以一起工作

优点:

  1. 可以让没有关联的两个类一起运行

  2. 提高了类的复用性

缺点:

  1. 过多适配器系统会比较乱,系统的维护性变差

使用场景:

  1. 当想使用已经存在的类,但是这个类的接口不符合客户需求

UML类图:

用户拿着适配器将两孔充电器转换成三孔
适配器模式

实例:

#include <iostream>
// 三孔插座
class Three{
public:
       void charging(){
              std::cout << "三孔插座充电" << std::endl;
       }
};
// 两孔充电器
class Two{
public:
       void charging(){
              std::cout << "两孔充电器充电" << std::endl;
       }
};
// 适配器
class Adapter{
public:
       void towToThree(){
              two.charging();
              std::cout << "两孔转三孔" << std::endl;
              three.charging();
       }
private:
       Two two;
       Three three;
};
int main(){
       Adapter adapter;
       adapter.towToThree();
       return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/197969?site
推荐阅读
相关标签
  

闽ICP备14008679号