设计模式
文章平均质量分 79
星武者
转行 android
展开
-
设计模式——建造者模式
设计模式之建造者模式建造者模式(Builder Pattern)也叫作生成器模式,其定义如下:Separate the construction process of a complex object from its representation so that the same construction process can create different representation...原创 2018-09-25 18:25:05 · 308 阅读 · 0 评论 -
设计模式之代理模式和Java中的代理以及JDK动态代理的实现原理
设计模式之代理模式和Java中的代理代理模式(Proxy Pottern)是一个使用频率很高的模式,其定义如下:Provide a surrogate or placegolder for another object to contol access to it.(为其他对象提供一种代理以控制这个对象的访问。)代理模式在很多的开源项目中出现,基本上一些只需要提供接口,就能访问到具体内容...原创 2018-10-13 22:07:35 · 611 阅读 · 0 评论 -
设计模式之原型模式——浅拷贝和深拷贝
原型模式原型模式的定义Specify the kinds of create using prototypical ihnstance, and create new objects by copying this prototy.用原型实例指定创建对象的种类,并且通过拷贝这些原型创建新的对象。原型模式就是通过原来的对象通过拷贝创建一个新的对象。Java提供了一个Cloneable接口来...原创 2018-10-20 20:09:57 · 1632 阅读 · 0 评论 -
设计模式之责任链模式
责任链模式Avoid coupling the sender of a request to its receiver by giving more than one objecta chance to handler the request. Chain the receiving objects and pass the request along the chain until an ob...原创 2018-11-02 21:44:23 · 226 阅读 · 0 评论