java 7种单例模式写法(最全,面试必问)

java 7种单例模式写法(最全,面试必问)

  1. 饿汉式(静态常量)
public class type1 {

    private final static type1 instance = new type1();

    private type1(){

    }

    public static  type1 getInstance(){
        return  instance;
    }

}
  1. 饿汉式(静态代码块)
public class type2 {

    private static  type2 type;

    private  type2(){}

    static {
        type = new type2();
    }

    private static   type2 getInstance(){
        return  type;
    }

}
  1. 懒汉式(线程不安全)
public class type3 {

    private static type3 type;

    private type3(){}


    private static type3 getInstance(){
        if(type == null){
            type = new type3();
        }
        return  type;
    }

}
  1. 懒汉式(线程安全,同步方法)
public class type4 {

    private static type4 type;

    private type4(){}


    private static synchronized type4 getInstance(){
        if(type == null){
            type = new type4();
        }
        return  type;
    }

}
  1. 双重检查
public class type5 {

    private static volatile type5 type;

    private type5(){}


    private static type5 getInstance(){
        if(type == null){
            synchronized(type5.class){
                if(type == null){
                    type = new type5();
                }
            }
        }
        return  type;
    }

}
  1. 静态内部类
public class type6 {

    private type6(){}

    private static class SingletonInstance{
        private static final type6 type = new type6();
    }

    public static type6 getInstance(){
        return  SingletonInstance.type;
    }
}
  1. 枚举
enum type7 {

    INSTANCE;

}
  • 3
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

易柏州Innovation

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

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

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

打赏作者

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

抵扣说明:

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

余额充值