设计模式 - 适配器模式(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!
设计模式 - 适配器模式(adapter pattern) 具体解释的更多相关文章
- 设计模式 - 适配器模式(adapter pattern) 枚举器和迭代器 具体解释
适配器模式(adapter pattern) 枚举器和迭代器 具体解释 本文地址: http://blog.csdn.net/caroline_wendy 參考适配器模式(adapter patter ...
- C#设计模式——适配器模式(Adapter Pattern)
一.概述在软件开发中,常常会想要复用一个已经存在的组件,但该组件的接口却与我们的需要不相符,这时我们可以创建一个适配器,在需复用的组件的接口和我们需要的接口间进行转换,从而能够正常的使用需复用的组件. ...
- 乐在其中设计模式(C#) - 适配器模式(Adapter Pattern)
原文:乐在其中设计模式(C#) - 适配器模式(Adapter Pattern) [索引页][源码下载] 乐在其中设计模式(C#) - 适配器模式(Adapter Pattern) 作者:webabc ...
- 怎样让孩子爱上设计模式 —— 7.适配器模式(Adapter Pattern)
怎样让孩子爱上设计模式 -- 7.适配器模式(Adapter Pattern) 标签: 设计模式初涉 概念相关 定义: 适配器模式把一个类的接口变换成client所期待的还有一种接口,从而 使原本因接 ...
- 设计模式系列之适配器模式(Adapter Pattern)——不兼容结构的协调
模式概述 模式定义 模式结构图 模式伪代码 类适配器,双向适配器,缺省适配器 类适配器 双向适配器 缺省适配器 模式应用 模式在JDK中的应用 模式在开源项目中的应用 模式总结 主要优点 主要缺点 适 ...
- 二十四种设计模式:适配器模式(Adapter Pattern)
适配器模式(Adapter Pattern) 介绍将一个类的接口转换成客户希望的另外一个接口.Adapter模式使得原本由于接口不兼容而不能一起工作的那些类可以一起工作.示例有一个Message实体类 ...
- 【设计模式】适配器模式 Adapter Pattern
适配器模式在软件开发界使用及其广泛,在工业界,现实中也是屡见不鲜.比如手机充电器,笔记本充电器,广播接收器,电视接收器等等.都是适配器. 适配器主要作用是让本来不兼容的两个事物兼容和谐的一起工作.比如 ...
- 设计模式(七): 通过转接头来观察"适配器模式"(Adapter Pattern)
在前面一篇博客中介绍了“命令模式”(Command Pattern),今天博客的主题是“适配器模式”(Adapter Pattern).适配器模式用处还是比较多的,如果你对“适配器模式”理解呢,那么自 ...
- 适配器模式(Adapter Pattern)--设计模式
在生活中,想用苹果充电线给安卓的手机充电时,因为两者的接口不一样,会导致充电口无法进行匹配, 这时候,就需要适配器,将安卓的充电口转化为苹果的接口,这样就可以充电啦.已有的类与新的接口不兼容问题是很普 ...
随机推荐
- 5.7.1.4 window对象
ECMAScript虽然没有指出如何直接访问Global对象,但web浏览器都是将这个全局对象作为window对象的一部分加以实现的.因此,在全局作用域中声明的所有变量和函数,就都成为了window对 ...
- PHP判断是中文还是英文
static function ischinese($s){ $allen = preg_match("/^[^/x80-/xff]+$/", $s); //判断是否是英文 $al ...
- android中ScrollView和GridView/ListView共存时,ScrollView不在顶部的解决方法
listView.setFocusable(false); gridView.setFocusable(false); 这个必须在代码中写,xml文件中设置不起作用 原文:http://stackov ...
- (Problem 19)Counting Sundays
You are given the following information, but you may prefer to do some research for yourself. 1 Jan ...
- 转: 关于异步promises
迄今为止,可能每个JavaScript开发者和他们的祖母都听说过Promises.如果你没有,那么你即将会.promises的概念是由CommonJS小组的成员在 Promises/A规范 中提出来的 ...
- Android Studio 中快速提取方法
在开发过程中,有时在一个方法内部写了过多的代码,然后想要把一些代码提取出来封装下,分离开放在一个单独的方法里,可能你的做法是直接选中后Ctrl + 叉,或者 Ctrl + C,但在Android St ...
- Codeforces Beta Round #97 (Div. 2)
A题求给出映射的反射,水题 #include <cstdio> int x,ans[105],n; int main(){ scanf("%d",&n); fo ...
- LINQ to SQL的CRUD操作
创建数据对象模型 sqlmetal /code:"C:\MyProjects\VS2008\Data\LinqConsoleApp2\LinqConsoleApp2\northwnd.cs& ...
- hdoj 1114 Piggy-Bank(完全背包+dp)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1114 思路分析:该问题要求为多重背包问题,使用多重背包的解法即可:假设dp[v]表示容量为v的背包中能 ...
- opengl模板缓冲区
相信大家有些人对opengl的模板缓冲区不是很理解,包括我最开始也是,opengl的模板缓冲区其实就是采用过滤的技术来控制那些颜色可以绘制,那些不能进行绘制.这里的过滤技术也就是我们的一个控制方法,主 ...