设计模式 - 适配器模式(adapter pattern) 详解

适配器模式(adapter pattern) 详解

 

本文地址: http://blog.csdn.net/caroline_wendy

 

适配器模式(adapter pattern): 将一个类的接口, 转换成客户期望的另一个接口. 适配器让原本不兼容的类可以合作无间.

 

适配器模式(adapter pattern)主要包括:

1. 被适配者接口(adaptee interface): 需要被适配的接口.

2. 适配器(adapter): 转换的类;

3. 目标接口(target interface): 需要转换成为的接口.

4. 客户(client): 具体使用的类.

 

具体方法:

1. 被适配者(adaptee interface)接口, 和实现接口具体的类.

 

/**
 * @time 2014年6月17日
 */
package adapter;

/**
 * @author C.L.Wang
 *
 */
public interface Turkey {
	public void gobble();
	public void fly();
}


/**
 * @time 2014年6月17日
 */
package adapter;

/**
 * @author C.L.Wang
 *
 */
public class WildTurkey implements Turkey {

	/* (non-Javadoc)
	 * @see adapter.Turkey#gobble()
	 */
	@Override
	public void gobble() {
		// TODO Auto-generated method stub
		System.out.println("Gobble gobble! ");
	}

	/* (non-Javadoc)
	 * @see adapter.Turkey#fly()
	 */
	@Override
	public void fly() {
		// TODO Auto-generated method stub
		System.out.println("I'm flying a short distance! ");
	}

}


2. 目标接口(target interface), 和实现接口具体的类.

 

 

/**
 * @time 2014年6月17日
 */
package adapter;

/**
 * @author C.L.Wang
 *
 */
public interface Duck {
	public void quack();
	public void fly();
}


/**
 * @time 2014年6月17日
 */
package adapter;

/**
 * @author C.L.Wang
 *
 */
public class MallardDuck implements Duck {

	/* (non-Javadoc)
	 * @see adapter.Duck#quack()
	 */
	@Override
	public void quack() {
		// TODO Auto-generated method stub
		System.out.println("Quack! ");
	}

	/* (non-Javadoc)
	 * @see adapter.Duck#fly()
	 */
	@Override
	public void fly() {
		// TODO Auto-generated method stub
		System.out.println("I'm flying! ");
	}

}


3. 适配器(adapter): 被适配者接口(adaptee interface) 转换 目标接口(target interface).

 

组合被适配者类接口, 实现目标类接口.

 

/**
 * @time 2014年6月17日
 */
package adapter;

/**
 * @author C.L.Wang
 *
 */
public class TurkeyAdapter implements Duck {

	Turkey turkey;
	
	public TurkeyAdapter (Turkey turkey) {
		this.turkey = turkey;
	}
	
	/* (non-Javadoc)
	 * @see adapter.Duck#quack()
	 */
	@Override
	public void quack() {
		// TODO Auto-generated method stub
		turkey.gobble();
	}

	/* (non-Javadoc)
	 * @see adapter.Duck#fly()
	 */
	@Override
	public void fly() {
		// TODO Auto-generated method stub
		for (int i=0; i<5; ++i) { //多次飞行
			turkey.fly(); 
		}
	}

}


4. 客户(client)方法需要使用目标类, 

 

把被适配者(adaptee)的具体类, 通过适配器(adapter), 转换为目标(target)类, 进行调用:

 

/**
 * @time 2014年6月17日
 */
package adapter;

/**
 * @author C.L.Wang
 *
 */
public class DuckTestDrive {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		MallardDuck duck = new MallardDuck();
		
		WildTurkey turkey = new WildTurkey();
		Duck turkeyAdapter = new TurkeyAdapter(turkey);
		
		System.out.println("The Turkey says ...");
		turkey.gobble();
		turkey.fly();
		
		System.out.println("\nThe Duck says ...");
		testDuck(duck);
		
		System.out.println("\nThe TurkeyAdapter says ...");
		testDuck(turkeyAdapter);
	}
	
	static void testDuck (Duck duck) {
		duck.quack();
		duck.fly();
	}

}


5. 输出.

 

 

The Turkey says ...
Gobble gobble! 
I'm flying a short distance! 

The Duck says ...
Quack! 
I'm flying! 

The TurkeyAdapter says ...
Gobble gobble! 
I'm flying a short distance! 
I'm flying a short distance! 
I'm flying a short distance! 
I'm flying a short distance! 
I'm flying a short distance! 

 

 

 

 

 

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ElminsterAumar

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值