单件模式的经典代码

部分组件在程序中只允许存在一个实例,比如一些管理共享资源的类,可以使用单件模式创建。

用例包括:缓存管理器,线程池、连接器等等。。。。。

代码实现依据

将构造函数私有化

这样就避免了外部实例化该类。


public class Singleton() {

    private Singleton() {
        // init method
    }
}

通过静态方式获取实例


    public static Singleton getInstance() {
        return instance;
    }

具体实现例子

综上部分代码片段,可以组合出如下经典结构。



public class Singleton() {

    private static Singleton instance;

    private Singleton() {
        //init method
    }

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

单件模式的多线程问题

如果第一个线程访问这个类时,instance == null 为true,那么他要new一个Singleton的对象,恰巧第二个线程也访问这个类,又会new 一个对象,从而出现问题。
解决方式有一下几种:

方式1:使用synchronized 方法同步getInstance过程


    public staic synchronized Singleton getInstance(){
        if(instance == null){
            instance  = new Singleton();
        }
    }
  • 问题:不管是否创建实例,每次调用getInstance时候都是同步的,可能降低性能。

方式2:提前创建实例

在加载类时就创建实例


public class Singleton {
    private static Singleton instance = new Singleton();

    private Singleton() {
        //init method
    }

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

方法3:双重加锁,减少使用同步

尽在要创建的时候使用同步方法


public class Singleton {

    private volatile static Singleton instance;

    private Singleton() {
        //init method
    }

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

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值