一起读书-单例模式

设计模式:设计模式(Design Pattern)是一套被反复使用、多数人知晓的、经过分类的、代码设计经验的总结,使用设计模式的目的:为了代码可重用性、让代码更容易被他人理解、保证代码可靠性(来自网络定义).

  1. 饱汉模式
  2. 饿汉模式
  3. 线程安全的单例模式
/**
 * 1.饱汉模式 需要时实例化对象
 */
public class SingletonLazy {
    private SingletonLazy() {
    }
    private static SingletonLazy singletonLazy;
    public SingletonLazy getInstance(){
        if (singletonLazy==null){
            singletonLazy =new SingletonLazy();
        }
        return singletonLazy;
    }
}
/**
 * 单例模式饿汉模式 随着类加载时实例化对象
 */
public class SingletonHunger {
    private SingletonHunger() {
    }

    private static SingletonHunger singletonHunger = new SingletonHunger();

    public static SingletonHunger getInstance() {
        return singletonHunger;
    }
}
/**
 * 双重检查锁 的线程安全单例
 */
public class SingletonForThead {
    private SingletonForThead(){
    }
    private static SingletonForThead singletonForThead;
    public SingletonForThead getInstance(){
        if (singletonForThead==null){
            synchronized (this){
                if (singletonForThead==null){
                    singletonForThead = new SingletonForThead();
                }
            }
        }

        return singletonForThead;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值