
设计模式
yidao620
这个作者很懒,什么都没留下…
展开
-
《设计模式》之一:六大设计原则
第1原则:单一职责原则 单一职责原则的定义是:应该有且仅有一个原因引起类的变更。 这个原则判别起来最难的地方就是对于职责的定义,以及怎样去划分职责。 为了方便理解,举个一个简单的电话接口例子,普通人都会这样写: public interface IPhone { // 拨通电话 public void dial(String number); // 通话 publ...2013-05-17 23:12:49 · 127 阅读 · 0 评论 -
《设计模式》之十三:策略模式
Strategy Pattern 策略模式是一种比较简单的模式,其定义如下: Define a family of algorithms, encapsulate each one, and make them interchangeable 定义一组算法,将每个算法封装起来,并且使它们可以互换 通用源码: public interface Strategy { // ...2013-05-28 23:38:17 · 106 阅读 · 0 评论 -
《设计模式》之十四:适配器模式
Adapter Pattern 适配器模式的定义如下: Convert the interface of a class into another interface clients expect. Adatper lets classes work together that couldn't otherwise because of incompatiable interfaces 将...2013-05-29 23:36:11 · 223 阅读 · 0 评论 -
《设计模式》之十五:观察者模式
Observer Pattern 观察者模式也叫发布/订阅(Publish/Subscribe)模式,它是一个在项目中经常使用的模式。 其定义如下: Define a one-to-many dependency between objects so that when one object changes state, all its dependents are notified an...2013-06-01 12:47:28 · 117 阅读 · 0 评论 -
《设计模式》之十六:门面模式
Facade Pattern 门面模式是一种比较常用的封装模式,其定义如下: Provide a unified interface to a set of interfaces in a subsystem. Facade defines a higher-level interface that makes the subsystem easier to use. 要求一个子系统的外部...2013-06-01 13:44:33 · 128 阅读 · 0 评论 -
《设计模式》之十七:备忘录模式
Memento Pattern 备忘录模式提供了一种弥补真实世界的方法,让”后悔药“在程序的世界中真实可行,其定义如下: Without violating encapsulation, capture and externalize an object's internal state so that the object can be restored to this state lat...2013-06-01 15:44:00 · 89 阅读 · 0 评论 -
《设计模式》之十八:访问者模式
Visitor Pattern 访问者模式是的定义如下: Represent an operation to be performed on the elements of an object structure. Visitor lets you define a new operation without changing the classes of the elements on w...2013-06-02 12:24:11 · 116 阅读 · 0 评论 -
《设计模式》之十九:状态模式
State Pattern 状态模式的定义如下: Allow an object to alter its behavior when its internal state changes. The object will appear to change its class. 当一个对象内在状态改变时允许其改变行为,这个对象看起来像改变了其类。(这什么鸟定义,看不懂,囧) 其实通俗来讲...2013-06-02 20:50:25 · 125 阅读 · 0 评论 -
《设计模式》之二十:享元模式
Flyweight Pattern 享元模式是池技术的重要实现方式,其定义如下: Use sharing to support large numbers of fine-grained objects efficiently. 使用共享对象技术可以有效地支持大量的细粒度的对象创建和使用 对象的内部状态和外部状态: * 内部状态 内部状态是对象可共享出来的信息,存储在享元对象内...2013-06-03 23:20:22 · 114 阅读 · 0 评论 -
《设计模式》之十二:装饰模式
Decorator Pattern 装饰器模式是一种比较常见的模式,其定义如下:Attach additional responsibility to an object dynamically keeping the same interface. Decorators provide a flexible alternative to subclassing for extending f...2013-05-27 22:31:32 · 101 阅读 · 0 评论 -
《设计模式》之十一:责任链模式
责任链模式定义: Avoid coupling the sender of a request to its receiver by giving more than one object a chance to handle the request. Chain the receiving objects and pass the request along the chain until...2013-05-26 19:24:18 · 101 阅读 · 0 评论 -
《设计模式》之十:命令模式
Command pattern 命令模式定义: Encapsulate a request as an object, thereby letting you parameterize cients with different requests, queue or log requests, and support undoable operations. 将请求封装成一个对象,从而让你...2013-05-26 18:44:03 · 97 阅读 · 0 评论 -
《设计模式》之二:单例模式
单例模式通用代码,非延迟加载,饿汉式单例,是线程安全的初始化方法,推荐这种方法: public class Singleton { private static final Singleton singleton = new Singleton(); private Singleton() { // 初始化代码 } public st...2013-05-19 14:13:11 · 94 阅读 · 0 评论 -
《设计模式》之三:工厂方法模式
Define an interface for creating an object,but let subclasses decide which class to instantiate. Factory method lets a class defer instantiate to subclasss 抽象工厂中定义一个方法,其中会有参数输入,而实现类通过传入的参数判断该生产出哪种对...2013-05-19 15:12:04 · 97 阅读 · 0 评论 -
《设计模式》之四:抽象工厂模式
抽象工厂模式Abstract Factory Pattern是一种比较常用的模式,其定义如下: Provide an interface for creating families of related or dependent objects without specifying their concrete classes。为创建一组相关或相互依赖的对象提供一个借口,而且无需指定它们的具...2013-05-21 23:58:53 · 97 阅读 · 0 评论 -
《设计模式》之五:模板方法模式
模板方法模式 Template Method Pattern 定义如下: Define the skeleton of an algorithm in an operation, deferring some steps to subclasses. Template Method lets subclasses redefine certain steps of an algorithm ...2013-05-22 22:44:58 · 85 阅读 · 0 评论 -
《设计模式》之六:Builder模式
Builder Pattern 也称建造者模式,其定义如下: Separate the construction of a complex object from its representation so that the same construction process can create different representations 在Builder模式中,有如下4个角色:...2013-05-23 20:28:34 · 109 阅读 · 0 评论 -
《设计模式》之七:代理模式
Proxy Pattern 代理模式,也叫委托模式 是一个使用率非常高的模式,非常典型的场景就是游戏代练,代练者就是一个代理者或者委托者。其定义如下: Provide a surrogate or placeholder for another object to control access to it 主要是三个角色: 1,Subject抽象主题角色,可以是抽象类也可以是接口 2,...2013-05-23 21:34:44 · 104 阅读 · 0 评论 -
《设计模式》之八:原型模式
Prototype Pattern 原型模式的定义如下: Specify the kinds of objects to create using a prototypical instance, and create new objects by copying this prototype. 用原型实例指定创建对象的种类,并且通过拷贝这些原型创建新的对象 原型模式简单程度仅次于单例模...2013-05-24 21:46:03 · 105 阅读 · 0 评论 -
《设计模式》之九:中介者模式
大家都学过网络的基本知识,网络拓扑有三种类型: 总线型、环形、星型。在星型网络拓扑中,每个计算机通过交换机和其他计算机进行数据交换,各个计算机之间并没有出现相互交互的情况。这种结构简单、而且稳定,只要中间那个交换机不瘫痪,整个网络不会发生大的故障。公司和网吧一般采用星型网络。 当在多个对象依赖的情况下,通过加入终结者的角色,取消了多个对象的关联或依赖关系,减少了对象的耦合性。 ...2013-05-24 22:21:03 · 117 阅读 · 0 评论 -
分布式一些有用技术
从淘宝网的技术架构中总结几个比较有用的: 应用拆分后,各个模块之间的同步调用,可以使用HSF框架 异步消息通知框架 -- Notify 缓存使用Redis Session使用Tbsession框架 分布式数据访问,分库分表后统一数据访问层,使用TDDL框架,工具有Rtools/JAPE,用于数据备份、复制、主备切换等。 如果是用python: django做前台,flask...2013-08-06 22:31:41 · 80 阅读 · 0 评论