设计模式-适配器模式

[url]http://zz563143188.iteye.com/blog/1847029[/url]

我将讲下7种结构型模式:适配器模式、装饰模式、代理模式、外观模式、桥接模式、组合模式、享元模式。其中对象的适配器模式是各种模式的起源,我们看下面的图:
[img]http://dl.iteye.com/upload/attachment/0083/1187/e28698b9-994e-3fa8-8810-16f30e7cf3e3.jpg[/img]


适配器模式将某个类的接口转换成客户端期望的另一个接口表示,[b][color=red]目的是消除由于接口不匹配所造成的类的兼容性问题[/color][/b]。主要分为三类:类的适配器模式、对象的适配器模式、接口的适配器模式。

[size=x-large][color=red]类的适配器模式[/color][/size],先看类图:
[img]http://dl.iteye.com/upload/attachment/0083/1189/6b2d13aa-7cc7-3e98-9764-bdcb2c64f795.jpg[/img]
核心思想就是:有一个Source类,拥有一个方法,待适配,目标接口时Targetable,通过Adapter类,将Source的功能扩展到Targetable里,看代码:
两个基础类:[color=blue]接口+类 --> 新的适配器[/color]

package com.pandy.structural.adapter;
public class Source {
public void method1() {
System.out.println("某个类原先存在的第一个方法");
}
}



package com.pandy.structural.adapter;
public interface Targetable {
/* 与原类中的方法相同 */
public void method1();

/* 新类的方法 */
public void method2();
}

类的适配:Adapter类继承Source类,实现Targetable接口
package com.pandy.structural.adapter.clazz;

import com.pandy.structural.adapter.Source;
import com.pandy.structural.adapter.Targetable;

/**
* Created by pandy on 14-7-17.
* 使用适配,达到实现类能够新增新的方法的同时,又能用已存在的方法
*
* 核心思想就是:有一个Source类,拥有一个方法,待适配,目标接口时Targetable,
* 通过Adapter类,将Source的功能扩展到Targetable里
*/
public class Adapter extends Source implements Targetable {

@Override
public void method2() {
System.out.println("新实现列要做的第二个方法");
}
}

测试:
package com.pandy.structural.adapter.clazz;

import com.pandy.structural.adapter.Targetable;
public class AdapterTest {
public static void main(String[] args) {
Targetable target = new Adapter();
target.method1();
target.method2();
}
}

输出:
[color=darkblue]某个类原先存在的第一个方法
新实现列要做的第二个方法[/color]


[size=x-large][color=red]对象的适配器模式:[/color][/size],[color=blue]接口--->已存在的实现类封装到适配器里面[/color]
基本思路和类的适配器模式相同,只是将Adapter类作修改,这次不继承Source类,而是持有Source类的实例,以达到解决兼容性的问题。看图:
[img]http://dl.iteye.com/upload/attachment/0083/1191/0aabe35b-5b79-3ead-838f-9d4b6fbd774d.jpg[/img]
只需要修改Adapter类的源码即可:
package com.pandy.structural.adapter.wrapper;

import com.pandy.structural.adapter.Source;
import com.pandy.structural.adapter.Targetable;

/**
* Created by pandy on 14-7-17.
* 采用封装的方式
* 只是将Adapter类作修改,这次不继承Source类,而是持有Source类的实例,以达到解决兼容性的问题。
*/
public class Wrapper implements Targetable {

private Source source;

public Wrapper(Source source){
super();
this.source = source;
}
@Override
public void method2() {
System.out.println("新实现列要做的第二个方法");
}

@Override
public void method1() {
source.method1();
}
}

测试:
package com.pandy.structural.adapter.wrapper;

import com.pandy.structural.adapter.Source;
import com.pandy.structural.adapter.Targetable;
public class AdapterTest {
public static void main(String[] args) {
Source source = new Source();
Targetable target = new Wrapper(source);
target.method1();
target.method2();
}
}



[size=x-large][color=red]接口的适配器模式[/color][/size],[color=blue]接口-抽象-不同的实现类->不同的业务需求[/color]
接口的适配器是这样的:有时我们写的一个接口中有多个抽象方法,当我们写该接口的实现类时,必须实现该接口的所有方法,这明显有时比较浪费,因为并不是所有的方法都是我们需要的,有时只需要某一些,此处为了解决这个问题,我们引[color=red][b]入了接口的适配器模式,借助于一个抽象类,该抽象类实现了该接口,实现了所有的方法,而我们不和原始的接口打交道,只和该抽象类取得联系,所以我们写一个类,继承该抽象类,重写我们需要的方法就行[/b][/color]。看一下类图:[img]http://dl.iteye.com/upload/attachment/0083/1193/a604fca8-e0c6-3e4e-b00a-49da21595b4e.jpg[/img]
这个很好理解,在实际开发中,我们也常会遇到这种接口中定义了太多的方法,以致于有时我们在一些实现类中并不是都需要。看代码:
接口:
package com.pandy.structural.adapter.interf;

/**
* 统一的接口
*/
public interface Sourceable {
public void method1();
public void method2();
}

抽象:
package com.pandy.structural.adapter.interf;

/**
* 默认实现方法的抽象类
*/
public abstract class AbcWrapper implements Sourceable{
public void method1(){
System.out.println("默认方法:抽象类实现的第一个方法");
}
public void method2(){
System.out.println("默认方法:抽象类实现的第二个方法");
}
}

第一个需求的实现类:
package com.pandy.structural.adapter.interf;

/**
* 第一个需求的实现类,继承抽象类
*/
public class SourceSub1 extends AbcWrapper {
public void method1() {
System.out.println("----------->目标方法:第一个继承抽象的类,只实现第一个方法");
}
}

第二个需求的实现类:
package com.pandy.structural.adapter.interf;

/**
* 第二个需求的实现类,继承抽象类
*/
public class SourceSub2 extends AbcWrapper {
public void method2() {
System.out.println("----------->目标方法:第二个继承抽象的类,只实现另外的一个方法");
}
}

测试:
package com.pandy.structural.adapter.interf;

/**
* 自己要做自己想做的方法
*/
public class WrapperTest {
public static void main(String[] args) {
System.out.println("分开使用");
System.out.println("第一个:");
Sourceable source1 = new SourceSub1();
source1.method1();
source1.method2();

System.out.println("第二个:");
Sourceable source2 = new SourceSub2();
source2.method1();
source2.method2();
}
}

[color=darkblue]分开使用
第一个:
----------->目标方法:第一个继承抽象的类,只实现第一个方法
默认方法:抽象类实现的第二个方法
第二个:
默认方法:抽象类实现的第一个方法
----------->目标方法:第二个继承抽象的类,只实现另外的一个方法[/color]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值