2016年9月12日

单例模式和工厂模式

摘要: 1.单例模式分为饿汉模式和懒汉模式; 饿汉式: public class Singleton{ private static Singleton singleton = new Singleton (); private Singleton (){} public static Singleton  阅读全文

posted @ 2016-09-12 17:01 骑着乌龟漂流 阅读(178) 评论(0) 推荐(0) 编辑

导航