摘要: 单例模式有两种书写模式:饿汉式和懒汉式。1.饿汉式class Single{ private final static Single s = new Single(); private Single(){} public static Single getS... 阅读全文
posted @ 2013-11-10 17:25 楪夕 阅读(1109) 评论(1) 推荐(0) 编辑