设计模式一:单例模式

单例模式有以下特点:
1、单例类只能有一个实例。
2、单例类必须自己创建自己的唯一实例。
3、单例类必须给所有其他对象提供这一实例。

四点要求:唯一实例,多线程并发访问,效率性能,懒加载(Lazy Load,在需要的时候才被构造)
1、懒汉模式,线程不安全

public class SingletonKerriganA {

    /**
     * 单例对象实例
     */
    private static SingletonKerriganA instance = null;

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

2、懒汉模式,线程安全,但是效率低

public class SingletonKerriganB {

    /**
     * 单例对象实例
     */
    private static SingletonKerriganB instance = null;

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

3、饿汉模式

public class SingletonKerriganE {

    /**
     * 单例对象实例
     */
    private static SingletonKerriganE instance = new SingletonKerriganE();

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

4、静态内部类。懒汉模式,线程安全,性能好,应用多。

public class SingletonKerriganF {

    private static class SingletonHolder {
        /**
         * 单例对象实例
         */
        static final SingletonKerriganF INSTANCE = new SingletonKerriganF();
    }

    public static SingletonKerriganF getInstance() {
        return SingletonHolder.INSTANCE;
    }
}

实际开发中,我们应该记住:没有最好的单例模式,只有最合适的单例模式。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值