首页 > 其他 > 详细

2020-03-04

时间:2020-03-04 21:53:57      阅读:67      评论:0      收藏:0      [点我收藏+]

庚子鼠年 戊寅月 丙午日

描述

把昨天的项目完成了,有时间在升级吧

设计模式之单例模式

技术博客:null

随笔

单例模式

  1. 构造方法私有化
  2. 对外提供获取实例的静态方法

饿汉式

方式一:静态属性 可以使用

public class Singleton {

    private final static Singleton INSTANCE = new Singleton();

    private Singleton(){}

    public static Singleton getInstance(){
        return INSTANCE;
    }
}

方式二:静态代码块 可以使用

public class Singleton {

    private static Singleton instance;

    static {
        instance = new Singleton();
    }

    private Singleton() {}

    public static Singleton getInstance() {
        return instance;
    }
}

懒汉式

方式一:线程不安全 不可以使用

public class Singleton {  
    private static Singleton instance;  
    private Singleton (){}  
  
    public static Singleton getInstance() {  
        if (instance == null) {  
            instance = new Singleton();  
        }  
        return instance;  
    }  
}

方式二:(线程安全,同步方法) 效率不行,不推荐使用

public class Singleton {

    private static Singleton singleton;

    private Singleton() {}

    public static synchronized Singleton getInstance() {
        if (singleton == null) {
            singleton = new Singleton();
        }
        return singleton;
    }
}

方式三:线程不安全,不可以使用

public class Singleton {

    private static Singleton singleton;

    private Singleton() {}

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

双重检查

线程安全, 效率高 推荐使用

public class Singleton {

    private static volatile Singleton singleton;

    private Singleton() {}

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

静态内部类

由于类加载的时候内部类不会加载,使用时才会去加载

java虚拟机保证了类的加载是线程安全推荐使用

public class Singleton {

    private Singleton() {}

    private static class SingletonInstance {
        private static final Singleton INSTANCE = new Singleton();
    }

    public static Singleton getInstance() {
        return SingletonInstance.INSTANCE;
    }
}

枚举

借助JDK1.5中添加的枚举来实现单例模式。不仅能避免多线程同步问题,而且还能防止反序列化重新创建新的对象。可能是因为枚举在JDK1.5中才添加。

public enum Singleton {
    INSTANCE;
    public void whateverMethod() {

    }
}

2020-03-04

原文:https://www.cnblogs.com/chang1024/p/12416365.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!