设计模式
文章平均质量分 69
white_while
码农
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
java设计模式笔记-创建型模式
创建型模式原创 2019-11-01 00:25:47 · 813 阅读 · 0 评论 -
java设计模式笔记-结构型模式
文章目录java设计模式笔记原创 2019-11-13 22:23:26 · 1109 阅读 · 0 评论 -
单例设计模式
文章目录单例模式饿汉懒加载静态类枚举类 单例模式 饿汉 public class ApplicationContext { private static final ApplicationContext INSTANT = new ApplicationContext(); private ApplicationContext() { init(); } public static getInstant() { return INSTANT; } } 懒加载 public class原创 2022-02-16 17:07:59 · 207 阅读 · 0 评论 -
策略模式经典应用,函数式接口策略模式,枚举策略模式
枚举策略模式,函数式接口策略模式,经典策略模式原创 2022-03-22 13:04:59 · 1194 阅读 · 0 评论
分享