当前位置:网站首页>适配器模式
适配器模式
2022-08-04 16:39:00 【l_ethan】
目录
简介
适配器是一种结构型设计模式,它能使接口不兼容的对象能够相互合作。
适配器可以转换不同格式的数据,有助于采用不同接口的对象之间的合作
运作方式
1.适配器实现与其中一个现有对象兼容的接口
2.现有对象可以使用该接口安全地调用适配器方法。
3.适配器方法被调用后将另一个对象兼容的格式和顺序将请求传递给该对象
优点:
1.单一职责原则你可以将接口或数据转换代码从程序主要业务逻辑中分离
2.开闭原则,只要客户端代码通过客户端接口与适配器进行交互,就能在不修改现有客户端代码的情况下在程序中添加新类型的适配器
缺点:
代码整体复杂度增加,因为需要新增一系列接口和类。有时直接更改服务类使其与其他代码兼容更简单
结构

适配器实现了其中一个对象的几口,并对另一个对象进行封装。
1.客户端(client)是包含当前程序业务逻辑的类
2.客户端接口(Client Interface)描述了其他类与客户端代码合作时必须遵循的协议
3.服务(Service)中有一些功能类(通常来自第三方或遗留系统)。客户端与其接口不兼容,因此无法直接调用其功能。
4.适配器(Adapter)是一个可以同时与客户端和服务交互的类:它在实现客户端接口的同时封装了服务对象。适配器接受客户端通过适配器接口发起的调用,并将其转化为为适用于被封装服务对象的调用。
5.客户端代码只需通过接口与适配器交互即可,无需与具体的适配器耦合。因此,可以向程序中添加新类型的适配器而无需修改已有代码。这在服务类的接口被更改或替换时很有用:无需修改客户端代码就可以创建新的适配器类。
类适配器

这一实现使用了继承机制:适配器同时继承两个对象的接口。这种方式仅能在支持多重继承的编程中语言实现如C++。
类适配器不需要封装任何对象,它同时继承了客户端和服务的行为。适配功能在重写的方法中完成。最后生成的适配器可替代已有的客户端进行使用。
案例
#include <iostream>
#include <string>
using namespace std;
//圆钉:客户端接口
class RoundPeg {
public:
RoundPeg(){}
virtual int get_radius() = 0;
};
//方钉:适配者类,即和客户端不兼容的类
class SquarePeg {
public:
explicit SquarePeg(int w) :width(w) {
}
int get_width() {
return width;
}
private:
int width;
};
//方钉适配器:该适配器能让客户端将方钉放入圆孔中
class SquarePegAdapter :public RoundPeg {
public:
explicit SquarePegAdapter(SquarePeg *sp):square_peg(sp){}
int get_radius() override {
return square_peg->get_width() * sqrt(2) / 2;
}
private:
SquarePeg* square_peg;
};
//圆孔:客户端类
class RoundHole {
public:
explicit RoundHole(int r) :radius(r) {
}
int get_radius() {
return radius;
}
bool isFit(RoundPeg* rp) {
return radius >= rp->get_radius();
}
private:
int radius;
};
int main()
{
RoundHole* hole = new RoundHole(10);
//半径分别为5和20大小方钉+它们的适配器
SquarePeg* small_square_peg = new SquarePeg(5);
SquarePeg* large_square_peg = new SquarePeg(20);
SquarePegAdapter* small_square_peg_adapter = new SquarePegAdapter(small_square_peg);
SquarePegAdapter* large_square_peg_adapter = new SquarePegAdapter(large_square_peg);
if (hole->isFit(small_square_peg_adapter)) {
cout << "small square fits the hole" << endl;
}
else {
cout << "small square don't fits the hole" << endl;
}
if (hole->isFit(large_square_peg_adapter)) {
cout << "large square fits the hole" << endl;
}
else {
cout << "large square don't fits the hole" << endl;
}
return 0;
}边栏推荐
猜你喜欢

MySQL 性能调优和优化技巧

redis

跨域传递数据(iframe)

911S5正式谢幕后 如何找到一个好用的替代品

浙江数码代工M301H 免拆通刷_卡刷固件包(语音OK)

Go语言gin框架返回json格式里,怎么把某个int属性转成string返回?

【打卡】广告-信息流跨域ctr预估(待更新)

华为应用市场“图章链接”功能上线 让APP分发突破机型壁垒

Heilongjiang Mobile New Magic Hundred Box M411A_2+8_S905L3A_wire brush firmware package

Hubei Mobile HG680-LV_S905L3B_wire brush firmware package
随机推荐
[TA-Frost Wolf_may-"Hundred Talents Project"] Art 2.7 Metallic and Speculer Process
18数藏解析
LeetCode·每日一题·1403.非递增顺序的最小子序列·贪心
什么是APS?APS+MES如何解决生产难题?
MySQL 性能调优和优化技巧
不需要服务器,教你仅用30行代码搞定实时健康码识别
RTL8762DK 远端设备配对
jMeter Transaction Controller 学习笔记
饿了么智能头盔专利获授权 进一步提升骑手安全保障
Mysql Explain
工龄10年的测试员从大厂“裸辞”后...
Real-Time Rendering 4th related resource arrangement (no credit required)
NFT盲盒挖矿系统dapp开发NFT链游搭建
8月5日,麒麟信安邀您相约鲲鹏开发者创享日·长沙站!
动手学深度学习_AlexNet
查看每个数据库分配给了哪些用户权限,这个有接口吗
Mobile magic box CM211-1_YS foundry _S905L3B_RTL8822C_wire brush firmware package
GraphQL 入门与实践
九联_UNT400G_S905L2_(联通)_线刷固件包
寻找消失的类名