摘要: /*单例设计模式。*///饿汉式。/*class Single{ private static final Single s = new Single(); private Single(){} public static Single getInstance() { ... 阅读全文
posted @ 2015-03-27 08:48 vaer 阅读(126) 评论(0) 推荐(0) 编辑