随笔分类 -  设计模式

摘要:设计模式 这里总结一下我学习到的多种设计模式的实现 单例模式 public class Singleton { private Singleton(){} public static Singleton getInstance(){ return SingletonInstance.instance 阅读全文
posted @ 2016-11-01 11:17 fengzp 阅读(1183) 评论(0) 推荐(0)