当前位置: 首页 > wzjs >正文

网站建设实训目的9377游戏盒子

网站建设实训目的,9377游戏盒子,wordpress门户主题 门户一号下载,宣传推广方案模板适配器模式将某个类的接口转换成客户端期望的另一个接口表示,目的是消除由于接口不匹配所造成的类的兼容性问题。主要分为三类:类的适配器模式、对象的适配器模式、接口的适配器模式。首先,我们来看看类的适配器模式 1.1 类的适配器模式 核…

适配器模式将某个类的接口转换成客户端期望的另一个接口表示,目的是消除由于接口不匹配所造成的类的兼容性问题。主要分为三类:类的适配器模式、对象的适配器模式、接口的适配器模式。首先,我们来看看类的适配器模式

1.1 类的适配器模式

核心思想就是:有一个Source类,拥有一个方法,待适配,目标接口时Target,通过Adapter类,将Source的功能扩展到Target里

public class Source {public void method1() {System.out.println("this is original method!");}
}
public class Adapter extends Source implements Target {@Overridepublic void method2() {System.out.println("this is the targetable method!");}
}

Adapter类继承Source类,实现Target接口,下面是测试类:

public class AdapterTest {public static void main(String[] args) {Target target = new Adapter();target.method1();target.method2();}
}

输出:

this is original method!
this is the targetable method!

这样Target接口的实现类就具有了Source类的功能

1.2 对象的适配器模式

基本思路和类的适配器模式相同,只是将Adapter类作修改,这次不继承Source类,而是持有Source类的实例,以达到解决兼容性的问题

public class Wrapper implements Target {private Source source;public Wrapper(Source source){super();this.source = source;}@Overridepublic void method2() {System.out.println("this is the targetable method!");}@Overridepublic void method1() {source.method1();}
}

public class AdapterTest {public static void main(String[] args) {Source source = new Source();Target target = new Wrapper(source);target.method1();target.method2();}
}

1.3接口的适配器模式

时我们写的一个接口中有多个抽象方法,当我们写该接口的实现类时,必须实现该接口的所有方法,这明显有时比较浪费,因为并不是所有的方法都是我们需要的,有时只需要某一些,此处为了解决这个问题,我们引入了接口的适配器模式,借助于一个抽象类,该抽象类实现了该接口,实现了所有的方法,而我们不和原始的接口打交道,只和该抽象类取得联系,所以我们写一个类,继承该抽象类,重写我们需要的方法就行

接口:

public interface Sourceable {public void method1();public void method2();
}

抽象类:

public abstract class AbstracterAdapter implements SourceInterface {@Overridepublic void method1() {}@Overridepublic void method2() {}
}

具体类:

public class SourceSub1 extends AbstracterAdapter{@Overridepublic void method1() {System.out.println("the sourceable interface's first Sub1!");}
}

public class SourceSub2 extends AbstracterAdapter{@Overridepublic void method2() {System.out.println("the sourceable interface's second Sub2!");}
}
public class Test {public static void main(String[] args) {SourceInterface sourceSub1 = new SourceSub1();SourceInterface sourceSub2 = new SourceSub2();sourceSub1.method1();sourceSub1.method2();sourceSub2.method1();sourceSub2.method2();}
}

测试输出:

the sourceable interface's first Sub1!
the sourceable interface's second Sub2!

达到了我们的效果!

 讲了这么多,总结一下三种适配器模式的应用场景:

类的适配器模式:当希望将一个类转换成满足另一个新接口的类时,可以使用类的适配器模式,创建一个新类,继承原有的类,实现新的接口即可。

对象的适配器模式:当希望将一个对象转换成满足另一个新接口的对象时,可以创建一个Wrapper类,持有原类的一个实例,在Wrapper类的方法中,调用实例的方法就行。

接口的适配器模式:当不希望实现一个接口中所有的方法时,可以创建一个抽象类Wrapper,实现所有方法,我们写别的类的时候,继承抽象类即可。


文章转载自:

http://kKCSNOS2.fbmzm.cn
http://dxz7UDJj.fbmzm.cn
http://ph9sjkE3.fbmzm.cn
http://be1an19g.fbmzm.cn
http://wwAq6Tb3.fbmzm.cn
http://2xngoAYx.fbmzm.cn
http://eJgfGt3H.fbmzm.cn
http://LlCxkVxv.fbmzm.cn
http://nQdSTwMI.fbmzm.cn
http://Yh4FGfJJ.fbmzm.cn
http://vJDlhv0Y.fbmzm.cn
http://RmEFbGcI.fbmzm.cn
http://Aw4JnT8n.fbmzm.cn
http://Rbk8WZQp.fbmzm.cn
http://VYEGMUC8.fbmzm.cn
http://DsRNskIk.fbmzm.cn
http://vj0OAKC6.fbmzm.cn
http://ZbJG9gYv.fbmzm.cn
http://m7J1ZRC3.fbmzm.cn
http://ABSXlraP.fbmzm.cn
http://dbSELXBI.fbmzm.cn
http://5Z60BvQ5.fbmzm.cn
http://Qtly4d9m.fbmzm.cn
http://j6kKINCs.fbmzm.cn
http://6yX8rrHb.fbmzm.cn
http://XxuW5IdD.fbmzm.cn
http://VFYdYiL1.fbmzm.cn
http://tw246d7y.fbmzm.cn
http://YifrgKXz.fbmzm.cn
http://7YxJ0AV1.fbmzm.cn
http://www.dtcms.com/wzjs/716009.html

相关文章:

  • 门户网站开发技术长沙招聘信息
  • 如何创建一个平台经典seo伪原创
  • 网站类型定义网站首页设计图
  • 零基础学pytho 网站开发拟定一个农产品电商网站的建设需求
  • 辽宁鞍山刚刚发布湖南专业关键词优化
  • 做网站的时候想要满屏服务器吗放几个网站
  • 昆明做网站哪家公司好优质网站建设的设计要点
  • 做网站提高淘宝店排名创意网站建设策划方案
  • 银铃建设通官方网站办网多少钱
  • 网站建设top图百度推广如何获取精准的客户
  • 网站开发一定得用html吗网站建设与管理logo
  • 建网站需要多久浙江网站建设哪家权威
  • 网站推广的看法旅游网站html
  • 个人工作室网站天津网站开发价格
  • 宇宙设计网站推荐软件营销之群排名优化教程
  • 北京朝阳做网站wordpress调用最新文章列表
  • 广州h5网站开发建设网站去工信部备案需要什么资料
  • 外贸接单网站集团型网站建设
  • 上海专业网站建设公司有哪些沈阳网页设计招聘
  • 整站多关键词优化做围棋题最好的网站
  • 徐州市城乡建设局门户网站seo营销外包
  • 中山品牌网站建设报价网上申请开办公司流程
  • 彩票网站开发是否可以云虚拟主机可以做视频网站不
  • 电子商务网站建设要求丹东做网站哪家好
  • 网站建设功能定位怎么写北京 做网站比较有名的
  • 艺术设计专业灵感推荐网站品牌策划营销
  • 织梦做的网站总是被攻击建站快车的应用场景
  • 廉江网站制作河北一建停考
  • 重庆物流公司网站建设福建建设科技人才网站
  • 无锡网络公司可以制作网站百度域名多少钱