单例模式 创建型 设计模式(六)
2018-11-20 03:22:43来源:博客园 阅读 ()
意图
- 单例模式的类,只能有一个实例对象
- 单例模式的类,自身创建自己唯一的实例对象
- 单例模式的类,必须提供获取这一唯一实例的方式
结构
- 饿汉式:实例在类加载时创建
- 懒汉式:实例在第一次使用时创建
饿汉式
package singleton; /** * Created by noteless on 2018/10/11. * Description: */ public class EagerSingleton { private EagerSingleton() { } private static final EagerSingleton singleton = new EagerSingleton(); public static EagerSingleton getInstance() { return singleton; } }
懒汉式
package singleton; /** * Created by noteless on 2018/10/11. * Description: */ public class LazySingleton { private LazySingleton() { } private static LazySingleton singleton = null; public static LazySingleton getInstance() { if (singleton == null) { singleton = new LazySingleton(); } return singleton; } }
public synchronized static LazySingleton getInstance() { if (singleton == null) { singleton = new LazySingleton(); } return singleton; }
public static LazySingleton getInstance() { synchronized (LazySingleton.class) { if (singleton == null) { singleton = new LazySingleton(); } } return singleton; }
package singleton; /** * Created by noteless on 2018/10/11. * Description: */ public class LazySingleton { private LazySingleton() { } private static LazySingleton singleton = null; public static LazySingleton getInstance() { if (singleton == null) { synchronized (LazySingleton.class) { if (singleton == null) { singleton = new LazySingleton(); } } } return singleton; } }
- 分配对象需要的内存空间
- 将singleton指向分配的内存空间
- 调用构造函数来初始化对象
package singleton; /** * Created by noteless on 2018/10/11. * Description: */ public class LazySingleton { private LazySingleton() { } private static volatile LazySingleton singleton = null; public static LazySingleton getInstance() { if (singleton == null) { synchronized (LazySingleton.class) { if (singleton == null) { singleton = new LazySingleton(); } } } return singleton; } }
内部类的懒汉式
package singleton; /** * Created by noteless on 2018/10/11. * Description: * @author */ public class Singleton { private Singleton() { } private static class SingletonHolder { private static final Singleton INSTANCE = new Singleton(); } public static Singleton getInstance() { return SingletonHolder.INSTANCE; } }
枚举单例
使用场景
总结
- 多例模式下可以创建多个实例
- 多例模式自己创建、管理自己的实例,并向外界提供访问方式获取实例
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:Struts2学习笔记
下一篇:并不简单的Integer
- 设计模式-委派/策略模式 2020-06-09
- 深入理解:设计模式中的七大设计原则 2020-06-07
- 设计模式---类之间的关系知多少 2020-06-07
- 你与面试官所了解的单例模式并不一样! 2020-06-06
- 高手眼中的观察者模式有什么不一样 2020-06-05
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash