singleton Client 通过Singleton.getSingleton()方法访问 Singleton -static final Singleton singleton = new Singleton() -Singleton() +static Singleton getSingleton() has a factory method 工厂方法模式 定义一个用于创建对象的接口,让子类决定实例化哪一个类。
factory method Creator +factoryMethod() Product ConcreteCreator ConcreteProduct 依赖具体产品 abstract factory 抽象工厂模式 为创建一组相关或相互依赖的对象提供一个接口,而且无须指定它们的具体类。
abstract factory Client AbstractFactory AbstractProduct ConcreteFactory ConcreteProduct builder 建造者模式 将一个复杂对象的构建与它的表示分离,使得同样的构建过程可以创建不同的表示。
builder Director +construct() Builder +buildPart() ConcreteBuilder Product 依赖 +builder prototype 原型模式 用原型实例指定创建对象的种类,并且通过拷贝这些原型创建新的对象。
prototype Client Prototype +clone() ConcretePrototype +prototype 结构型 通过组合类或对象产生更大结构以适应更高层次的逻辑需求
adapter 适配器模式 将一个类的接口变换成客户端所期待的另一种接口,从而使原本因接口不匹配而无法在一起工作的两个类能够在一起工作。
adapter Client Target +request() Adaptee +specificRequest() Adapter bridge 桥梁模式 将抽象和实现解耦,使得两者可以独立地变化。
bridge Abstraction +operation() Implementor +operationImp() RefinedAbstraction ConcreteImplementor +imp composite 组合模式 将对象组合成树形结构以表示“部分-整体”的层次结构,使得用户对单个对象和组合对象的使用具有一致性。
composite Client Component +operation() Composite +add(Component) +remove(Component) +getChild(int) Leaf 安全模式:把用来组合使用的 方法放到实现类中,比如add()、 remove()等方法 decorator 装饰模式 动态地给一个对象添加一些额外的职责。
decorator Component +operation() Decorator ConcreteDecorator ConcreteComponent facade 门面模式 要求一个子系统的外部与其内部的通信必须通过一个统一的对象进行。
facade Facade Subsystem Classes flyweight 享元模式 使用共享对象可有效地支持大量的细粒度的对象。
flyweight Client FlyweightFactory +getFlyweight(key) Flyweight +operation() ConcreteFlyweight UnsharedConcreteFlyweight +flyweights proxy 代理模式 为其他对象提供一种代理以控制对这个对象的访问。
proxy Subject RealSubject Proxy +RealSubject 行为型 chain 责任链模式 使多个对象都有机会处理请求,从而避免了请求的发送者和接受者之间的耦合关系。将这些对象连成一条链,并沿着这条链传递该请求,直到有对象处理它为止
chain of responsibility Client Handler +handlerRequest() ConcreteHandler +successor command 命令模式 将一个请求封装成一个对象,从而让你使用不同的请求把客户端参数化,对请求排队或者记录请求日志,可以提供命令的撤销和恢复功能。
command Client Invoker Command +execute() Receiver +action() ConcreteCommand +receiver interpreter 解释器模式 给定一门语言,定义它的文法的一种表示,并定义一个解释器,该解释器使用该表示来解释语言中的句子。
interpreter Client Context AbstractExpression +interpreter() TerminalExpression NonTerminalExpression iterator 迭代器模式 它提供一种方法访问一个容器对象中各个元素,而又不需暴露该对象的内部细节。
iterator Aggregate +createIterator() Iterator +first() +next() +isDone() +currentItem() ConcreteIterator ConcreteAggregate 用一个中介对象封装一系列的对象交互,中介者使各对象不需要显示地相互作用,从而使其耦合松散,而且可以独立地改变它们之间的交互。
mediator Mediator Colleague ConcreteMediator has a memento 备忘录模式 在不破坏封装性的前提下,捕获一个对象的内部状态,并在该对象之外保存这个状态。这样以后就可将该对象恢复到原先保存的状态。
memento Originator +setMemento(m: Memento) +createMemento() Memento +getState() +setState() Caretaker +memento observer 观察者模式 定义对象间一种一对多的依赖关系,使得每当一个对象改变状态,则所有依赖于它的对象都会得到通知并被自动更新。
observer Subject +attach(o : Observer) +detach(o : Observer) +notify() Observer +update() ConcreteSubject ConcreteObserver +subject state 状态模式 当一个对象内在状态改变时允许其改变行为,这个对象看起来像改变了class一样。
state State +handle() ConcreteState Context +request() +state strategy 策略模式 定义一组算法,将每个算法都封装起来,并且使它们之间可以互换。
strategy Context +contextInterface Strategy +algorithmInterface() ConcreteStrategy +strategy template 模板方法模式 定义一个操作中的算法的框架,而将一些步骤延迟到子类中。使得子类可以不改变一个算法的结构即可重定义该算法的某些特定步骤。
template AbstractClass #void doAnything() #void doSomething() +void templateMethod() ConcreteClass1 ConcreteClass2 visitor 访问者模式 封装一些作用于某种数据结构中的各元素的操作,它可以在不改变数据结构的前提下定义作用于这些元素的新的操作。
visitor Client ObjectStructure Visitor +visitConcreteElement(elem: ConcreteElement) ConcreteVisitor Element ConcreteElement 参考 秦小波. 设计模式之禅
2021-04-07
每次换新电脑就要重新配置一下,然后又要去找之前是怎么配置的,浪费时间,不如将配置过程记录在此,方便下次使用。