单例模式
1.懒汉模式
public class Singleton{ private static Singleton instance = new Singleton(); private Singleton(){ } public static Singleton getInstance(){ retuurn instanace; } }
重点:当程序没有调用获取实例方法时,虚拟机已经加载了此类并调用了构造方法,没有延时加载的功能
2.饿汉模式
public class Singleton{ private static Singleton instance; private Singleton(){ } public static Singleton getInstance(){ if(null == instance){ instance = new Singleton(); } return instance; } }
重点:有延时加载功能,但线程不安全,当在多线程场景中,可能出现多个实例
3.DCL
public class Singleton{ private static Singleton instance; private Singleton(){ } public static Singleton getInstance(){ if(null == instance){ synchronized(Singleton.class){ if(null == instance){ instance = new Singleton(); } } } return instance; } }
重点: 实例化时虚拟机存在指令重排序优化,依然会导致线程不安全,可将instance对象用volatile修饰
4.静态内部类
public class Singleton{ private Singleton(){} private static class SingletonHolder{ private static final Singleton instance = new Singleton(); } public static Singleton getInstance(){ return SingletonHolder.instance; } }
重点:延时加载、线程安全,推荐使用
5.枚举
public enum Singleton{ INSTANCE; }
作者:进击的欧阳
链接:https://www.jianshu.com/p/e94d3828da84
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦