Java设计模式 – 四大类型

设计模式 -- 四大类型

设计模式(Design pattern)是重构解决方案

根据书Design Patterns -- Elements of Reusable Object-Oriented Software(中文译名:设计模式 -- 可复用的面向对象软件元素) 中和 J2EE 所提到的,总共有 23 +8 种设计模式

这些模式可以分为四大类:创建型模式(Creational Patterns)、结构型模式(Structural

Patterns)、行为型模式(Behavioral Patterns)、J2EE 设计模式

创建型模式

这些设计模式提供了一种在创建对象的同时隐藏创建逻辑的方式,而不是使用 new 运算符直接实例化对象

这使得程序在判断针对某个给定实例需要创建哪些对象时更加灵活

包括

  1. 工厂模式(FactoryPattern)
  2. 抽象工厂模式(AbstractFactoryPattern)
  3. 单例模式(SingletonPattern)
  4. 建造者模式(BuilderPattern
  5. 原型模式(PrototypePattern)

结构型模式

这些设计模式关注类和对象的组合

继承的概念被用来组合接口和定义组合对象获得新功能的方式

包括

  1. 适配器模式(AdapterPattern)
  2. 桥接模式(BridgePattern)
  3. 过滤器模式(Filter、CriteriaPattern)
  4. 组合模式(CompositePattern)
  5. 装饰器模式(DecoratorPattern)
  6. 外观模式(FacadePattern)
  7. 享元模式(FlyweightPattern)
  8. 代理模式(ProxyPattern)

行为型模式

这些设计模式特别关注对象之间的通信

包括

  1. 责任链模式(ChainofResponsibilityPattern)
  2. 命令模式(CommandPattern)
  3. 解释器模式(InterpreterPattern)
  4. 迭代器模式(IteratorPattern)
  5. 中介者模式(MediatorPattern)
  6. 备忘录模式(MementoPattern)
  7. 观察者模式(ObserverPattern)
  8. 状态模式(StatePattern)
  9. 空对象模式(NullObjectPattern)
  10. 策略模式(StrategyPattern)
  11. 模板模式(TemplatePattern)
  12. 访问者模式(VisitorPattern

J2EE模式

这些设计模式特别关注表示层

这些模式是由 Sun Java Center 鉴定的

包括:

  1. MVC模式(MVCPattern)
  2. 业务代表模式(BusinessDelegatePattern)
  3. 组合实体模式(CompositeEntityPattern)
  4. 数据访问对象模式(DataAccessObjectPattern)
  5. 前端控制器模式(FrontControllerPattern)
  6. 拦截过滤器模式(InterceptingFilterPattern)
  7. 服务定位器模式(ServiceLocatorPattern)
  8. 传输对象模式(TransferObjectPattern)

下面用一个图片来整体描述一下设计模式之间的关系:

相关推荐
我命由我123457 分钟前
SEO 与 GEO 极简理解
java·linux·运维·开发语言·学习·算法·运维开发
金銀銅鐵9 分钟前
[Java] 自己写程序,来解析方法的 descriptor
java·后端
红辣椒...16 分钟前
codex+第三方模型
java·服务器·前端
老码观察18 分钟前
设计模式实战解读(八):代理模式——控制访问的隐形中间层
设计模式·代理模式
一个做软件开发的牛马27 分钟前
Java 继承与多态:从"是什么"到"能做什么"的设计思维
java·后端
不懂的浪漫36 分钟前
05|Netty ByteBuf 源码分析:为什么不用 Java ByteBuffer
java·netty
wapicn9942 分钟前
API接口调试笔记:从注册到第一个数据返回,全流程详解
java·开发语言·python·lua
程序员阿明1 小时前
flowable集成flowable及其运行示例spring boot后端
java·spring boot·后端
我爱cope1 小时前
【Agent智能体12 | 反思设计模式-使用外部反馈】
人工智能·设计模式·语言模型·职场和发展
geovindu1 小时前
python: Bounded Parallelism Pattern
开发语言·python·设计模式·有界并行模式