摘要: 状态模式 状态模式结构图: 示例代码: // 抽象状态类 public abstract class Status { protected ApplicationContext context; public void setContext(ApplicationContext context) { 阅读全文
posted @ 2021-04-28 21:54 justKen 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 模板方法模式 模板方法模式结构图: 示例代码: // 测试类 public class TemplateMethodTest { public static void main(String[] args) { TemplateMethod method = new ConcreteMethod() 阅读全文
posted @ 2021-04-28 00:02 justKen 阅读(40) 评论(0) 推荐(0) 编辑