【Java学习】单例模式

2018-08-06 09:00:37来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

单例模式有两种:饿汉模式和懒汉模式,懒汉模式的特点是延迟加载实例

//饿汉模式
class Singleton1{
  private static final Singleton1 instance = new Singleton1();
  private Singleton1(){}
  public static Singleton1 getSingleton()
  {
    return instance;
  }
}

//懒汉模式 
class Singleton2{
  private static Singleton2 instance;
  private Singleton2(){}
  public static Singleton2 getSingleton()
  {
    if(instance == null)
      instance = new Singleton2();
    return instance;
  }
}

懒汉模式在多线程的情况下,会存在安全问题,对象会被实例化多次,可以用同步方法或者同步方法快的方式解决

//解决懒汉模式多线程的安全问题
class Singleton3{
  private static Singleton3 instance;
  private Singleton3(){}
  public static synchronized Singleton3 getSingleton()
  {
    if(instance == null)
      instance = new Singleton3();
    return instance;
  }
}

但是这种方式由于增加了判断锁的操作,会使得执行效率变慢

//解决懒汉模式多线程的安全问题的优化方案
class Singleton4{
  private static Singleton4 instance;
  private Singleton4(){}
  public static Singleton4 getSingleton()
  {
    if(instance == null)
    {
      synchronized(Singleton4.class)
      {
        if(instance == null)
          instance = new Singleton4();
      }
    }
    return instance;
  }
}

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:深入理解Java虚拟机06--虚拟机字节码执行引擎

下一篇:[源码分析]StringBuilder