码迷,mamicode.com
首页 > 其他好文 > 详细

单例模式

时间:2018-11-24 23:56:54      阅读:354      评论:0      收藏:0      [点我收藏+]

标签:序列化   实例   序列   static   span   null   www   单例模式   vat   

双重检查锁 & volatile保证可见性(变量值改动后及时从工作内存写回主内存)和有序性(指令不可重排)

public class Singleton {
    private static volatile Singleton singleton = null;
    
    private Singleton(){}
    
    public static Singleton getSingleton(){
        if(singleton == null){
            synchronized (Singleton.class){
                if(singleton == null){
                    singleton = new Singleton();
                }
            }
        }
        return singleton;
    }    
}

利用JVM类加载的原理保证只初始化一下实例,利用内部类,保证使用时才初始化加载(满足了赖加载)

public class Singleton {
    private static class Holder {
        private static Singleton singleton = new Singleton();
    }
    
    private Singleton(){}
        
    public static Singleton getSingleton(){
        return Holder.singleton;
    }
}

不管采取何种方案,请时刻牢记单例的三大要点:

  • 线程安全
  • 延迟加载
  • 序列化与反序列化安全

https://www.cnblogs.com/andy-zhou/p/5363585.html

单例模式

标签:序列化   实例   序列   static   span   null   www   单例模式   vat   

原文地址:https://www.cnblogs.com/genggeng/p/10013781.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!