当前位置:   article > 正文

安卓适配器类中怎么调用intent_JavaScript 设计模式 —— 适配器模式

android适配器中的使用点击调用另一个公共方法

00fda609fcf55c3b3cae7aa57cd4889f.png

简介:

适配器模式是将一个类(对象)的接口(方法或属性)转化为使用这个类的“客户”所期望的另外一种接口(方法或属性),适配器模式使得提供接口的类和使用这个类的“客户”从不兼容而变得兼容

个人理解:

服务使用方将为了适应服务提供方而产生的数据处理逻辑抽离,而封装出一个新的类(适配器),适配器输入原有服务提供方的接口,输出服务使用方可以接受的接口。

好处:

  1. 使得数据处理的逻辑从服务接收方中抽离,简化其逻辑。
  2. 使得服务接受方代码更加纯粹,开发时,不再关心具体的数据处理细节。
  3. 使得服务提供类更加通用

一些 (Demo)

我们都知道 IPhone(从4s以后)都是使用Lighting接口充电的,而近几年的安卓手机大多是使用Type-C接口充电的。我们无法将Type-C充电器直接插到IPhone上,为Iphone充电。

此时此刻我们可能需要一些代码来演示这个过程:JavaScript 设计模式 —— 适配器模式

简介:

适配器模式是将一个类(对象)的接口(方法或属性)转化为使用这个类的“客户”所期望的另外一种接口(方法或属性),适配器模式使得提供接口的类和使用这个类的“客户”从不兼容而变得兼容

个人理解:

服务使用方将为了适应服务提供方而产生的数据处理逻辑抽离,而封装出一个新的类(适配器),适配器输入原有服务提供方的接口,输出服务使用方可以接受的接口。

好处:

  1. 使得数据处理的逻辑从服务接收方中抽离,简化其逻辑。
  2. 使得服务接受方代码更加纯粹,开发时,不再关心具体的数据处理细节。
  3. 使得服务提供类更加通用

一些 (Demo)

​ 我们都知道 IPhone(从4s以后)都是使用Lighting接口充电的,而近几年的安卓手机大多是使用Type-C接口充电的。我们无法将Type-C充电器直接插到IPhone上,为Iphone充电。

​ 此时此刻我们可能需要一些代码来演示这个过程:

  1. // 一个Iphone类
  2. class IPhone {
  3. constructor(generation) {
  4. this.name = `IPhone${generation}`;
  5. this.usbMode = 'lighting';
  6. this.currentBattery = 0;
  7. this.tid = null;
  8. }
  9. // 充电方法
  10. getCharge(charger) {
  11. // 判断输入的是否是Lighting模式的充电器
  12. if(charger.type !== this.usbMode) {
  13. // 不是,抛出类型错误, 拒绝充电。
  14. throw new TypeError(`charger Type error, expect ${this.usbMode}, but got a/an ${charger.type}`)
  15. }
  16. // 否则 执行charger提供的充电方法
  17. charger.startCharge(this)
  18. }
  19. removeCharger() {
  20. if (this.tid) clearInterval(this.tid);
  21. console.log(`电源已移除, 当前电量${this.currentBattery}`)
  22. }
  23. }
  24. // 一个充电器类
  25. class Charger {
  26. constructor(type) {
  27. this.type = type
  28. }
  29. // 提供的充电方法
  30. startCharge(phone) {
  31. phone.tid = setInterval(() => {
  32. // 充满后停止充电
  33. if(phone.currentBattery >= 100 ) {
  34. clearInterval(phone.tid);
  35. console.log('充电完毕,请移除电源')
  36. } else {
  37. // 如果没有充满,则每秒钟给手机冲入1%的电(氪金快充)
  38. phone.currentBattery += 1;
  39. console.log(`${phone.name}正在充电, 当前电量${phone.currentBattery}%`)
  40. }
  41. }, 1000)
  42. }
  43. }
  44. // 我买一个IPhone 11 Pro Max
  45. const iPhone11ProMax = new IPhone('IPhone 11 Pro Max')
  46. // 手机被我用没电了
  47. iPhone11ProMax.currentBattery = 0;
  48. // 再买一个Type-C充电器
  49. const typec_charger = new Charger('type-c');
  50. // 给手机充电吧
  51. iPhone11ProMax.getCharge(typec_charger);

OK 充电失败 (浏览器抛出了一些错误)

  1. VM3492:14 Uncaught TypeError: charger Type error, expect lighting, but got a/an type-c
  2. at IPhone.getCharge (<anonymous>:14:13)
  3. at <anonymous>:52:16

​ 这时候我们需要一个转换器——type-c To Lighting 转换器(CtoL):它提供Tyep-C的母口进行电能输入,提供Lighting的公口进行输出。

​ 机智的你,打开了 京宝 / 拼东 / 淘多多......

​ 购买了一个Type-C 转 Lighting的转接头(适配器)

于是我们的适配器就登场了!

  1. // 一个 Type-C 到 Lighting 的适配器类
  2. class C2LAdapter {
  3. constructor({type, startCharge}) {
  4. this.type = type,
  5. this.startCharge = startCharge
  6. }
  7. charge() {
  8. let type = 'lighting'
  9. return {...this, type}
  10. }
  11. }
  12. // 购买!
  13. let c2LAdapter = new C2LAdapter(typec_charger);
  14. // 拿出我的 IPhone 11 Pro Max 充充看!
  15. iPhone11ProMax.getCharge(c2LAdapter.charge());

​ 接着我们如愿以偿地使用适配器 为我们的IPhone11Pro充上了电

  1. IPhoneIPhone 11 Pro Max正在充电, 当前电量1%
  2. VM1584:39 IPhoneIPhone 11 Pro Max正在充电, 当前电量2%
  3. VM1584:39 IPhoneIPhone 11 Pro Max正在充电, 当前电量3%
  4. VM1584:39 IPhoneIPhone 11 Pro Max正在充电, 当前电量4%
  5. ...
  6. VM1584:39 IPhoneIPhone 11 Pro Max正在充电, 当前电量98%
  7. VM1584:39 IPhoneIPhone 11 Pro Max正在充电, 当前电量99%
  8. VM1584:39 IPhoneIPhone 11 Pro Max正在充电, 当前电量100%
  9. VM1584:35 充电完毕,请移除电源

​ OK 本着节约用电和保护电池的原则,让我们拔掉充电器

  1. iPhone11ProMax.removeCharger()
  2. // 电源已移除, 当前电量100

​ 至此, 我们使用一个适配器完美地解决了使用Type-C充电器为我的IPhone11ProMax充电的难题。

但还不够完美!

​ 我们的CtoL适配器能够实现C到L口的转换,但如果此时我如果只有一个安卓手机和一根Lighting数据线怎么办?

​ 所以,我们的适配器需要更加通用!

​ 我们轻轻地对我们的适配器进行一些改造:

  1. // 万能充电适配器(万能充???)
  2. class AlmightyAdapter {
  3. constructor() {
  4. this.outputType = null;
  5. this.outputCharger = null;
  6. this.inputCharger = null;
  7. }
  8. // 执行转换
  9. typeChange() {
  10. let { startCharge } = this.inputCharger;
  11. this.outputCharger = {
  12. startCharge;
  13. type: this.outputType
  14. }
  15. }
  16. // 输入的充电器, 希望输出的类型
  17. charge(inputCharger, outputType) {
  18. this.inputCharger = inputCharger;
  19. this.outputType = outputType;
  20. this.typeChange();
  21. return this.outputCharger
  22. }
  23. }

​ 买一个试试看

  1. let almightyAdapter = new AlmightyAdapter();
  2. // 拿出我的 IPhone 11 Pro Max 充充看!
  3. iPhone11ProMax.getCharge(almightyAdapter.charge(typec_charger, 'lighting'));

也许还能更好!

almightyAdapter.charge( [输入的充电器], [期望输出的类型] )

​ almightyAdapter.charge方法接受的第二个参数是我们期望输出的充电接口类型,往往我们可能不知道IPhone11ProMax的充电模式是什么[模式自动识别]。我们能否实现接入手机时自动是否期望输出的接口类型呢?

​ 也就是说能否实现这样的调用方式呢?

  1. // 适配器的almightyAdapter.charge方法只显式接受一个输入充电器, 自动获取受电设备的类型,决定自己的输出
  2. iPhone11ProMax.getCharge(almightyAdapter.charge(typec_charger));
  3. // 一个天才万能适配器
  4. class GeniusAlmightyAdapter {
  5. constructor() {
  6. this.outputType = null;
  7. this.outputCharger = null;
  8. this.inputCharger = null;
  9. }
  10. // 增加一个试探接入的充电设备Usb模式的方法
  11. // 该方法改变实例的输出类型后放回自身
  12. tryToTestPhoneType(phone) {
  13. this.outputType = phone.usbType;
  14. return this;
  15. }
  16. // 执行转换
  17. typeChange() {
  18. let { startCharge } = this.inputCharger;
  19. this.outputCharger = {
  20. startCharge;
  21. type: this.outputType
  22. }
  23. }
  24. // 输入的充电器, 希望输出的类型
  25. charge(inputCharger) {
  26. this.inputCharger = inputCharger;
  27. this.typeChange();
  28. return this.outputCharger
  29. }
  30. }

​ 如何使用?

  1. // 如下使用
  2. iPhone11ProMax.getCharge(almightyAdapter.tryToTestPhoneType(iPhone11ProMax).charge(typec_charger));

​ 分析一下

  1. // 购买一个天才万能充电器
  2. const almightyAdapter = new AlmightyAdapter;
  3. // 得到应输出模式的天才万能充电器
  4. const adapterHasOutputType = almightyAdapter.tryToTestPhoneType(iPhone11ProMax);
  5. 充电开始
  6. iPhone11ProMax.getCharge(adapterHasOutputType.charge(typec_charger));

适配器模式为我们解决了什么问题

​ 它抹平了一些系统或者包在接入其他系统时产生的数据格式、模式转换问题,让我们在开发时更加专注于逻辑代码的开发,使一些可能产生的数据异常在系统外隔离,增强系统的健壮性,提升系统的纯粹性,避免大量的数据处理和逻辑缠绕在一起,另外接入或被接入方在更新迭代后,提供或预期的数据/接口模式可能会发生一些变化,而我们只需在适配器这一层做一些兼容处理保持输入输出的稳定即可。

注释

[模式自动识别]:我们只知道希望得到IPhone11ProMax的充电模式,我们可能不知道通过IPhone11ProMax.usbType获取,我们更希望这样的逻辑通过适配器自动读取,实际上现在的手机充电器往往在接入设备后,会去主动尝试获取设备的充电协议,比如高通的QC3.0、Apple使用的DP等,这些步骤完全是自动的,我们没有手动配置适配器,是适配器在接入设备后自动完成了这个检测的工作

  1. // 一个Iphone类
  2. class IPhone {
  3. constructor(generation) {
  4. this.name = `IPhone${generation}`;
  5. this.usbMode = 'lighting';
  6. this.currentBattery = 0;
  7. this.tid = null;
  8. }
  9. // 充电方法
  10. getCharge(charger) {
  11. // 判断输入的是否是Lighting模式的充电器
  12. if(charger.type !== this.usbMode) {
  13. // 不是,抛出类型错误, 拒绝充电。
  14. throw new TypeError(`charger Type error, expect ${this.usbMode}, but got a/an ${charger.type}`)
  15. }
  16. // 否则 执行charger提供的充电方法
  17. charger.startCharge(this)
  18. }
  19. removeCharger() {
  20. if (this.tid) clearInterval(this.tid);
  21. console.log(`电源已移除, 当前电量${this.currentBattery}`)
  22. }
  23. }
  24. // 一个充电器类
  25. class Charger {
  26. constructor(type) {
  27. this.type = type
  28. }
  29. // 提供的充电方法
  30. startCharge(phone) {
  31. phone.tid = setInterval(() => {
  32. // 充满后停止充电
  33. if(phone.currentBattery >= 100 ) {
  34. clearInterval(phone.tid);
  35. console.log('充电完毕,请移除电源')
  36. } else {
  37. // 如果没有充满,则每秒钟给手机冲入1%的电(氪金快充)
  38. phone.currentBattery += 1;
  39. console.log(`${phone.name}正在充电, 当前电量${phone.currentBattery}%`)
  40. }
  41. }, 1000)
  42. }
  43. }
  44. // 我买一个IPhone 11 Pro Max
  45. const iPhone11ProMax = new IPhone('IPhone 11 Pro Max')
  46. // 手机被我用没电了
  47. iPhone11ProMax.currentBattery = 0;
  48. // 再买一个Type-C充电器
  49. const typec_charger = new Charger('type-c');
  50. // 给手机充电吧
  51. iPhone11ProMax.getCharge(typec_charger);
  52. VM3492:14 Uncaught TypeError: charger Type error, expect lighting, but got a/an type-c
  53. at IPhone.getCharge (<anonymous>:14:13)
  54. at <anonymous>:52:16
  55. // 一个 Type-C 到 Lighting 的适配器类
  56. class C2LAdapter {
  57. constructor({type, startCharge}) {
  58. this.type = type,
  59. this.startCharge = startCharge
  60. }
  61. charge() {
  62. let type = 'lighting'
  63. return {...this, type}
  64. }
  65. }
  66. // 购买!
  67. let c2LAdapter = new C2LAdapter(typec_charger);
  68. // 拿出我的 IPhone 11 Pro Max 充充看!
  69. iPhone11ProMax.getCharge(c2LAdapter.charge());
  70. IPhoneIPhone 11 Pro Max正在充电, 当前电量1%
  71. VM1584:39 IPhoneIPhone 11 Pro Max正在充电, 当前电量2%
  72. VM1584:39 IPhoneIPhone 11 Pro Max正在充电, 当前电量3%
  73. VM1584:39 IPhoneIPhone 11 Pro Max正在充电, 当前电量4%
  74. ...
  75. VM1584:39 IPhoneIPhone 11 Pro Max正在充电, 当前电量98%
  76. VM1584:39 IPhoneIPhone 11 Pro Max正在充电, 当前电量99%
  77. VM1584:39 IPhoneIPhone 11 Pro Max正在充电, 当前电量100%
  78. VM1584:35 充电完毕,请移除电源
  79. iPhone11ProMax.removeCharger()
  80. // 电源已移除, 当前电量100
  81. // 万能充电适配器(万能充???)
  82. class AlmightyAdapter {
  83. constructor() {
  84. this.outputType = null;
  85. this.outputCharger = null;
  86. this.inputCharger = null;
  87. }
  88. // 执行转换
  89. typeChange() {
  90. let { startCharge } = this.inputCharger;
  91. this.outputCharger = {
  92. startCharge;
  93. type: this.outputType
  94. }
  95. }
  96. // 输入的充电器, 希望输出的类型
  97. charge(inputCharger, outputType) {
  98. this.inputCharger = inputCharger;
  99. this.outputType = outputType;
  100. this.typeChange();
  101. return this.outputCharger
  102. }
  103. }
  104. let almightyAdapter = new AlmightyAdapter();
  105. // 拿出我的 IPhone 11 Pro Max 充充看!
  106. iPhone11ProMax.getCharge(almightyAdapter.charge(typec_charger, 'lighting'));
  107. // 适配器的almightyAdapter.charge方法只显式接受一个输入充电器, 自动获取受电设备的类型,决定自己的输出
  108. iPhone11ProMax.getCharge(almightyAdapter.charge(typec_charger));
  109. // 一个天才万能适配器
  110. class GeniusAlmightyAdapter {
  111. constructor() {
  112. this.outputType = null;
  113. this.outputCharger = null;
  114. this.inputCharger = null;
  115. }
  116. // 增加一个试探接入的充电设备Usb模式的方法
  117. // 该方法改变实例的输出类型后放回自身
  118. tryToTestPhoneType(phone) {
  119. this.outputType = phone.usbType;
  120. return this;
  121. }
  122. // 执行转换
  123. typeChange() {
  124. let { startCharge } = this.inputCharger;
  125. this.outputCharger = {
  126. startCharge;
  127. type: this.outputType
  128. }
  129. }
  130. // 输入的充电器, 希望输出的类型
  131. charge(inputCharger) {
  132. this.inputCharger = inputCharger;
  133. this.typeChange();
  134. return this.outputCharger
  135. }
  136. }
  137. // 如下使用
  138. iPhone11ProMax.getCharge(almightyAdapter.tryToTestPhoneType(iPhone11ProMax).charge(typec_charger));
  139. // 购买一个天才万能充电器
  140. const almightyAdapter = new AlmightyAdapter;
  141. // 得到应输出模式的天才万能充电器
  142. const adapterHasOutputType = almightyAdapter.tryToTestPhoneType(iPhone11ProMax);
  143. 充电开始
  144. iPhone11ProMax.getCharge(adapterHasOutputType.charge(typec_charger));

[模式自动识别]:我们只知道希望得到IPhone11ProMax的充电模式,我们可能不知道通过IPhone11ProMax.usbType获取,我们更希望这样的逻辑通过适配器自动读取,实际上现在的手机充电器往往在接入设备后,会去主动尝试获取设备的充电协议,比如高通的QC3.0、Apple使用的DP等,这些步骤完全是自动的,我们没有手动配置适配器,是适配器在接入设备后自动完成了这个检测的工作

注释

它抹平了一些系统或者包在接入其他系统时产生的数据格式、模式转换问题,让我们在开发时更加专注于逻辑代码的开发,使一些可能产生的数据异常在系统外隔离,增强系统的健壮性,提升系统的纯粹性,避免大量的数据处理和逻辑缠绕在一起,另外接入或被接入方在更新迭代后,提供或预期的数据/接口模式可能会发生一些变化,而我们只需在适配器这一层做一些兼容处理保持输入输出的稳定即可。

适配器模式为我们解决了什么问题

分析一下

如何使用?

也就是说能否实现这样的调用方式呢?

almightyAdapter.charge方法接受的第二个参数是我们期望输出的充电接口类型,往往我们可能不知道IPhone11ProMax的充电模式是什么[模式自动识别]。我们能否实现接入手机时自动是否期望输出的接口类型呢?

almightyAdapter.charge( [输入的充电器], [期望输出的类型] )

也许还能更好!

买一个试试看

我们轻轻地对我们的适配器进行一些改造:

所以,我们的适配器需要更加通用!

我们的CtoL适配器能够实现C到L口的转换,但如果此时我如果只有一个安卓手机和一根Lighting数据线怎么办?

但还不够完美!

至此, 我们使用一个适配器完美地解决了使用Type-C充电器为我的IPhone11ProMax充电的难题。

OK 本着节约用电和保护电池的原则,让我们拔掉充电器

接着我们如愿以偿地使用适配器 为我们的IPhone11Pro充上了电

于是我们的适配器就登场了!

购买了一个Type-C 转 Lighting的转接头(适配器)

机智的你,打开了 京宝 / 拼东 / 淘多多......

这时候我们需要一个转换器——type-c To Lighting 转换器(CtoL):它提供Tyep-C的母口进行电能输入,提供Lighting的公口进行输出。

OK 充电失败 (浏览器抛出了一些错误)

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

闽ICP备14008679号