饿汉模式和懒汉模式

饿汉模式:预加载模式 (优化方式:静态内部类)

  • 优点:在类加载的时候,就创建好对象放到静态区了,获取对象效率高。线程安全
  • 缺点:类加载效率低,并且static修饰的成员占用资源。
public class singletonHungry {
    private static singletonHungry singleton= new singletonHungry();
    private singletonHungry() {
    }
    public static singletonHungry getInstance(){
        return singleton;
    }
}
public class SingletonTest {
    public static void main(String[] args) {
        singletonHungry instance =singletonHungry.getInstance();
        singletonHungry instance2 =singletonHungry.getInstance();
        System.out.println(instance==instance2);//true
    }
}

懒汉模式:懒加载模式 (优化方式:双重校验锁)

  • 优点:节省资源,在需要的时候创建对象。
  • 缺点:线程不安全。获取对象的时候,效率低
  • 最简单的线程安全的方式:同步方法,效率低
  • 更好的的线程安全的方式:双重校验锁
public class SingletonLazy {
    private static SingletonLazy singleton;
    public SingletonLazy() {
    }
    public static SingletonLazy getInstance() {
        //再次判断当前singleton是否已经创建,如果创建,直接获取
        if (singleton == null) {
            synchronized (SingletonLazy.class) {
                //先判断当前对象是否已经创建
                if (singleton == null) {
                    singleton = new SingletonLazy();
                }
            }
        }
        return singleton;
    }
}
public class SingletonTest {
    public static void main(String[] args) {
        SingletonLazy instance = SingletonLazy.getInstance();
        SingletonLazy instance2 = SingletonLazy.getInstance();
        System.out.println(instance==instance2);//true
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

༄༊心灵骇客༣

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值