设计模式
文章平均质量分 66
根据《Design Patterns》Elements of Reusable Object-Oriented Software一书,对三大类23种设计模式进行深度的实战讲解;专栏中所有示例均以JAVA语言来实现。
silaslili
在不占有生产资料的阶级里,我的生产工具是一台笔记本电脑。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
个人对设计模式的一些体会
我们先来解答这个问题。Design Pattern这个概念是什么时候开始提出的!“GoF(“四人帮”,又称Gang of Four,即Erich Gamma、Richard Helm、Ralph Johnson和John Vlissides四人)的《设计模式》,原名《Design Patterns: Elements of Reusable Object-Oriented Software》(1995年出版,出版社:Addison Wesly Longman.Inc),第一次将设计模式提...原创 2013-01-26 22:20:25 · 1497 阅读 · 0 评论
-
个人对设计模式的一些体会
GoF(“四人帮”,又称Gang of Four,即Erich Gamma、Richard Helm、Ralph Johnson和John Vlissides四人)的《设计模式》,原名**《Design Patterns: Elements of Reusable Object-Oriented Software》**(1995年出版,出版社:Addison Wesly Longman.Inc),第一次将设计模式提升到理论高度,并将之规范化。三大基本观点:①联系的观点、②发展的观点、③一分为二的观点。原创 2025-11-14 16:05:54 · 1017 阅读 · 0 评论 -
【创建模式-原型(蓝本)模式(Prototype Pattern)】
唐.李商隐君问归期未有期,巴山夜雨涨秋池。何当共剪西窗烛,却话巴山夜雨时。原创 2025-02-19 12:58:58 · 1163 阅读 · 0 评论 -
结构模式-适配器模式
适配器模式。原创 2022-11-17 14:01:45 · 215 阅读 · 0 评论 -
创建模式-抽象工厂模式(Abstract Factory Pattern)
Provide an interface for creating families of related or dependent objects without specifying their concrete classes.原创 2014-07-11 10:49:22 · 992 阅读 · 0 评论 -
创建模式-工厂方法模式(Factory Method Pattern)
Define an interface for creating an object, but let subclasses decide which class to instantiate. Factory Method lets a class defer instantiation to subclasses.原创 2022-01-27 16:40:36 · 319 阅读 · 0 评论
分享