Java进阶(极客)——单例模式(二)优化

同步(synchronized)getInstance方法

<span style="font-size:18px;">/**
 * 同步(synchronized)getInstance方法
 * 
 */
public class Singleton {
    public static Singleton instance = null;

    //把构造方法写成私有的,防止在外面new对象,保证对象的唯一性;
    private Singleton() {
    }

    /**在静态方法中实例化静态对象。
     * 1、多线程下,保证线程安全加synchronized,消耗资源多,调用次数要少
     * 
     * 
     * @return
     */
    public static synchronized Singleton getInstance() {
        if (instance == null) {

            instance = new Singleton();
        }

        return instance;

    };

}
</span>

“急切”创建实例

<span style="font-size:18px;">public class Singleton2 {
    /**
     * 1、多线程下,急切创建,保证线程安全,在类创建时创建对象。
     * 
     */
    public static Singleton2 instance2 = new Singleton2();

    //把构造方法写成私有的,防止在外面new对象,保证对象的唯一性;
    private Singleton2() {
    }

    public static synchronized Singleton2 getInstance() {
        if (instance2 == null) {

            instance2 = new Singleton2();
        }

        return instance2;

    };

}
</span>
双重检查加锁

<span style="font-size:18px;">public class Singleton3 {
    public volatile static Singleton3 instance3 = null;

    //把构造方法写成私有的,防止在外面new对象,保证对象的唯一性;
    private Singleton3() {
    }

    /**在静态方法中实例化静态对象。
     * 1、多线程下,双重检查加锁法
     *
     */
    public static Singleton3 getInstance() {
        if (instance3 == null) {
            synchronized (Singleton3.class) {
                instance3 = new Singleton3();

            }

        }

        return instance3;

    };

}
</span>



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值