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

单例设计模式

时间:2018-04-02 23:55:55      阅读:336      评论:0      收藏:0      [点我收藏+]

标签:优化   懒汉式   get   sync   public   gets   turn   stat   final   

 

 

  懒汉式  先判断是否已经实例化,如果没有则实例化,有则直接返回.

  public class Single {
    private static Single single=null;
private Single(){}
    public static synchronized Single getSingleton (){
if(single!=null){
return new Single();
}
return single;
}
}

饿汉式 一开始就实例化

public class Singleton2 {
private final static Singleton2 singleton2=new Singleton2();
private Singleton2(){
}
public static Singleton2 getSingleton2(){
return singleton2;
}
}

优化版懒汉式(线程安全的懒汉式,性能比懒汉式好)
public class Single {
    private static Single single=null;
private Single(){}
    public static  Single getSingleton (){
if(single!=null){
      synchronized(Single.class){
    if(single!=null){
      return new Single();
    }
}
        }
return single;
}
}






 

单例设计模式

标签:优化   懒汉式   get   sync   public   gets   turn   stat   final   

原文地址:https://www.cnblogs.com/HLBL/p/8698397.html

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