1. adapter pattern
利用已有类提供的方法,根据客户要求的接口,改进以达到客户的期望。
1.1 class adapter
1.2 object adapter
例子 :
Ext.grid.ColumnModel 即是 表格要求的列的接口 ,
Java Swing 中 JTable 的 TableModel 即是 客户要求的接口 ,我们要适配这个接口
2. Facade pattern
在于 对一个 包含很多类的 复杂的系统,提供一个方便使用的调用方式。
例子: Extjs : Ext.MessageBox
Java Swing : JOptionPane
3. Composite pattern
能够对一个对象或其对象的组合不加区别的应用操作。
例子: Extjs : Ext.CompositeElement ,Standard composite class. Creates a Ext.Element for every element in the collection.
4.Bridge 模式
着重于抽象 ,将一系列相似的行为抽象出来,和具体的实现分离。
091030:将抽象与其实现隔离开来,以便二者独立变化。
例子:Ext.Component : Base class for all Ext components. All subclasses of Component can automatically participate in the standard Ext component lifecycle of creation, rendering and destruction.