java几种方式实现单例设计模式

2020-03-27 16:02:24来源:博客园 阅读 ()

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

java几种方式实现单例设计模式

单例模式的几种实现方式:

一:饿汉式单例

方式一:枚举方式获得单例对象

方式二:静态属性获得单例对象

方式三:静态方法获得单例对象

二:懒汉式单例

方式一:静态方法获得单例对象(线程安全)

方式二:内部类方式去获取单例对象

 

示例:

恶汉式:方式一

enum Singleton{

  INSTANCE;//单例

}

恶汉式:方式二

class Singleton{

  public static final Singleton INSTANCE = new Singleton();//单例

  private Singleton(){}

}

恶汉式:方式三

class Singleton{

  private static final Singleton INSTANCE = new Singleton();//单例

  private Singleton(){}

  public static Singleton getInstance(){

    return INSTANCE;

  }

}

懒汉式:方式一

class Singleton{

  private static Singleton instance;
  private Singleton(){}

  public static Singleton getInstance(){

    //存在线程安全问题(多线程的时候,不一定是单例)

    /*if(null == instance){

      instance = new Singleton();

    }

    return instance;*/

    if(null == instance){  //提升代码效率,避免每一次都去走同步代码块

      synchronized(Singleton.class){

        if(null == instance){

          instance = new Singleton();

        }

        return instance;

        } 

      }

      return instance;   

    }

  }

}

懒汉式:方式二

class Singleton{

  private Singleton(){}

  private static class Inner{

    public static final Singleton INSTANCE = new Singleton();

  }

  public static Singleton getInstance(){

    return Inner.INSTANCE;

  }

}


原文链接:https://www.cnblogs.com/dirsoen/p/12580320.html
如有疑问请与原作者联系

标签:

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

上一篇:Java 创建/编辑/删除Excel迷你图表

下一篇:Java连载103-多线程