单例模式

单例模式

最常用的单例模式,经常在项目中见,梳理后发现各种各样的单例,索性梳理一下。

  • 自己创建自己,提供了访问其唯一对象的方式,可以直接访问,不需要实例化对象。
  • 私有构造
  • 自己创建唯一实例

  • 1.懒汉式

    • 非线程安全
    • lazy loading
    • 不标准,不常用
public class UserModel{
        private static UserModel instance; 
        private UserModel(){
        }

        public static UserModel getInstance(){
            if(instance == null){
                instance = new UserModel;
            }
            return instance;
        }
    }
  • 2.懒汉式
    • 线程安全
    • lazy loading
    • synchronized 加锁影响效率
public class UserModel{
        private static UserModel instance; 
        private UserModel(){
        }

        public static synchronized UserModel getInstance(){
            if(instance == null){
                instance = new UserModel;
            }
            return instance;
        }
    }
  • 3.饿汉式
    • 线程安全
    • 非lazy loading
    • 非加锁,效率高
public class UserModel{
    private static UserModel instance = new UserModel;
    private UserModel(){}

    public static UserModel getInstance{
        return instance;
    }
}
  • 4.双重锁校验
    • 线程安全
    • lazy loading
    • 双锁机制,保持高性能
public class UserModel{
    private volatile static UserModel instance;
    private UserModel(){}
    public static UserModel getInstance{
        if(instance == null){
            synchronized(UserModel.class){
                if(instance == null){
                    instance = new UserModel();
                }
            }
        }
        return instance;
    }
}
  • 5 静态内部类
    • 线程安全
    • lazy loading
    • 书写简单
public class UserModel{
    private static class Hodler{
        private static final UserModel INSTANCE = new UserModel();
    }
    private UserModel(){}
    public static final UserModel getInstance(){
        return Hodler.INSTANCE;
    }
}

总结

  • 推荐4,5使用方式,但由于双锁代码量过多,推荐使用优雅的静态内部类。这也是《Effect Java》 所推荐使用的。

  • 单例好用,维护难。作为已经在单例模式踩过坑的来讲,梳理好业务场景,建议在对单例模式的维护成本不大的情况下,以及使用场景不复杂的情况下使用。否则,多业务耦合和,对单例的维护,将会很头疼。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值