
设计模式
文章平均质量分 84
程序员可乐、
一个有故事的程序员,持续更新技术教程
展开
-
Java设计模式之(十四)——策略模式
1、什么是策略模式?Define a family of algorithms, encapsulate each one, and make them interchangeable. Strategy lets the algorithm vary independently from clients that use it.策略模式(Strategy Pattern):定义一族算法类,将每个算法分别封装起来,让它们可以互相替换。2、策略模式定义①、Context封装角色它也叫做上下文角原创 2021-12-03 08:00:00 · 433 阅读 · 0 评论 -
Java设计模式之(十三)——模板方法模式
1、什么是模板模式?Define the skeleton of an algorithm in an operation, deferring some steps to subclasses. Template Method lets subclasses redefine certain steps of an algorithm without changing the algorithm’s structure.模板方法模式(Template Method Pattern):定义一个操作中原创 2021-12-02 08:00:00 · 310 阅读 · 0 评论 -
Java设计模式之(十二)——观察者模式
1、什么是观察者模式?Define a one-to-many dependency between objects so that when one object changes state, all its dependents are notified and updated automatically.观察者模式(Observer Design Pattern):在对象之间定义一个一对多的依赖,当一个对象状态改变的时候,所有依赖的对象都会得到通知并自动更新。说人话:也叫发布订阅模式,能够原创 2021-12-01 08:00:00 · 554 阅读 · 1 评论 -
Java设计模式之(十一)——享元模式
1、什么是享元模式?Use sharing to support large numbers of fine-grained objects efficiently.享元模式(Flyweight Pattern):使用共享对象可有效地支持大量的细粒度的对象。说人话:复用对象,节省内存。2、享元模式定义①、Flyweight——抽象享元角色是一个产品的抽象类, 同时定义出对象的外部状态和内部状态的接口或实现。一个对象信息可以分为内部状态和外部状态。内部状态:对象可共享出来的信息, 存储在原创 2021-11-30 08:00:00 · 387 阅读 · 0 评论 -
Java设计模式之(十)——组合模式
1、什么是组合模式?Compose objects into tree structures to represent part-whole hierarchies.Composite lets clients treat individual objects and compositions of objects uniformly.组合模式(Composite Pattern):将对象组合成树形结构以表示“部分-整体”的层次结构, 使得用户对单个对象和组合对象的使用具有一致性。说人话:用于处理原创 2021-11-29 08:00:00 · 523 阅读 · 0 评论 -
Java设计模式之(九)——门面模式
1、什么是门面模式?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.门面模式(Facade Pattern):也叫外观模式,要求一个子系统的外部与其内部的通信必须通过一个统一的对象进行。 门面模式提供一个高层次的接口,使得子系统更易于使用。说人话:假设有一个系原创 2021-11-26 08:00:00 · 901 阅读 · 0 评论 -
Java设计模式之(八)——适配器模式
1、什么是适配器模式?Convert the interface of a class into another interface clients expect.Adapter lets classes work together that couldn’t otherwise because of incompatible interfaces.适配器模式(Adapter Pattern):将一个类的接口变换成客户端所期待的另一种接口,从而使原本因接口不匹配而无法在一起工作的两个类能够在一起工作原创 2021-11-25 08:00:00 · 313 阅读 · 0 评论 -
Java设计模式之(七)——装饰器模式
1、什么是装饰器模式?Attach additional responsibilities to an object dynamically keeping the same interface.Decorators provide a flexiblealternative to subclassing for extending functionality.装饰器模式(Decorator Pattern):动态的给一个对象添加额外的职责,就增加功能来说, 装饰模式相比生成子类更为灵活。说人话原创 2021-11-24 08:00:00 · 429 阅读 · 0 评论 -
Java设计模式之(六)——桥接模式
1、什么是桥接模式?Decouple an abstraction from its implementation so that the two can vary independently.桥接模式(Bridge Pattern):将抽象和实现解耦, 使得两者可以独立地变化。另外一种解释是:一个类存在两个(或多个)独立变化的维度,我们通过组合的方式,让这两个(或多个)维度可以独立进行扩展。听起来可能还是很深奥,没关系,下面通过例子讲解。2、桥接模式定义①、Abstraction抽象化原创 2021-11-23 08:00:00 · 420 阅读 · 0 评论 -
Java设计模式之(五)——代理模式
1、什么是代理模式Provide a surrogate or placeholder for another object to control access to it.Proxy Pattern:为其他对象提供一种代理以控制对这个对象的访问。说人话:在不改变原始类(或叫被代理类)代码的情况下,通过引入代理类来给原始类附加功能,比如Spring AOP。2、代理模式定义①、Subject抽象主题角色,可以是抽象类,可以是接口,是一个最普通的业务类定义,无特殊要求。②、RealSub原创 2021-11-22 08:00:00 · 451 阅读 · 0 评论 -
Java设计模式之(四)——原型模式
1、什么是原型模式Specify the kinds of objects to create using a prototypical instance,and create new objects by copying this prototype.Prototype Design Pattern:用原型实例指定创建对象的种类, 并且通过拷贝这些原型创建新的对象。说人话:对象复制2、原型模式的两种实现方法我们日常开发中,应该有使用过 BeanUtils.copyProperties()方法原创 2021-11-21 12:25:23 · 507 阅读 · 0 评论 -
Java设计模式之(二)——工厂模式
1、什么是工厂模式Define an interface for creating an object,but let subclasses decide which class toinstantiate.Factory Method lets a class defer instantiation to subclasses.定义一个创建对象的接口,让其子类自己决定实例化哪一个工厂类,工厂模式使其创建过程延迟到子类进行。说人话:提供创建对象的接口,将创建对象的过程屏蔽,从而达到灵活的目的。2原创 2021-11-18 08:00:00 · 434 阅读 · 0 评论 -
Java设计模式之(一)——单例模式
1、什么是单例模式Ensure a class has only one instance, and provide a global point of access to it.采取一定的办法保证在整个软件系统中,确保对于某个类只能存在一个实例。单例模式有如下三个特点:①、单例类只能有一个实例②、单例类必须自己创建自己的实例③、单例类必须提供外界获取这个实例的方法2、单例类的设计思想(Singleton)①、外界不能创建这个类的实例,那么必须将构造器私有化。public class S原创 2021-11-17 08:00:00 · 314 阅读 · 0 评论