- 创建型设计模式
摘要:
1. Singleton,单例模式。确保某一个类只有一个实例,而且自行实例化并向整个系统提供这个实例。这个类称为单例类。public class Singleton{ private static Singleton instance = null; private Singleton() { // do something } public static synchronized Singleton getInstance() { if (instance == null) { instanc... 阅读全文
posted @ 2012-11-18 15:09 勤修 阅读(142) 评论(0) 推荐(0) 编辑