原文第10章 外观模式(Fa?ade Pattern)概述:
在软件开发系统中,客户程序经常会与复杂系统的内部子系统之间产生耦合,而导致客户程序随着子系统的变化而变化。那么如何简化客户程序与子系统之间的交互接口?如何将复杂系统的内部子系统与客户程序之间的依赖解耦?这就是要说的Fa?ade模式。
为子...
分类:
其他好文 时间:
2014-05-12 09:11:08
阅读次数:
317
一、外观模式定义
为子系统中的一组接口提供一个一致的界面,使得此子系统更加容易使用。二、书中python代码实现 1 class AModuleApi: 2 def
testA(self): 3 pass 4 class AModuleImpl(AModuleApi):...
分类:
编程语言 时间:
2014-05-09 19:07:03
阅读次数:
317
public class Facade { /** * @param args 外观模式 */ One
one; Two two; Three three; public Facade() { one=new One(); two=new Two();
three=new Three()...
分类:
其他好文 时间:
2014-04-29 11:15:47
阅读次数:
238