摘要:
第五章 Singleton 模式 单例模式应该是开发中用的比较多的模式。这里我只记一个知识点。 多线程下安全的单例模式的一个知识点 public class Singleton{ public static InstanceClass instance = null; public static S 阅读全文
摘要:
交给子类 Teamplate Method 模式 -- 将具体任务交给子类 核心代码 public abstract class AbstractDisplay{ public abstract void open(); public abstract void print(); public ab 阅读全文
摘要:
第一章 Iterator模式 -- 一个一个遍历 为什么要使用 Iterator模式? 正常遍历我们使用 for 循环即可,为什么要在集合引入 Iterator 这个角色呢? eg while(it.hasNext()){ Book book = (Book) it.next(); System.o 阅读全文