单例模式与反射创建对象

单例模式

饿汉式单例模式

单例模式,就是自己先把自己创建了,整个程序都只有这一个实例,别人都没有办法创建实例,因为他的构造方法是private的

  • 一次性把全部都创建了
java 复制代码
public class HungryMan {
    private static int [][] s = new int[5][5];
    private static int [][] s1 = new int[5][5];
    private static int [][] s2 = new int[5][5];

    private static HungryMan hungryMan = new HungryMan();
    private HungryMan() {

    }

    private static HungryMan getInstance() {
        return hungryMan;
    }
}
  • 这样就会存在很多浪费空间

懒汉式单例模式

为了解决这种浪费,出现了懒汉式单例模式

  • 就是我什么都不创建,需要使用的时候再去创建

java 复制代码
public class LazyMan {
    private static LazyMan lazyMan;
    private LazyMan() {
        
    }
    private static LazyMan getLazyMan(){
        if(lazyMan == null){
            lazyMan = new LazyMan();
        }
        return lazyMan;
    }
}

单例模式的问题

  • 在单线程下,创建是没有问题的,但是在多线程下创建就会有问题
java 复制代码
public class LazyMan {
    private static LazyMan lazyMan;
    private LazyMan() {
        System.out.println(Thread.currentThread().getName() );
    }
    private static LazyMan getLazyMan(){
        if(lazyMan == null){
            lazyMan = new LazyMan();
        }
        return lazyMan;
    }

    public static void main(String[] args) {
        for (int i = 0; i < 10; i++) {
            new Thread(()->{
                LazyMan.getLazyMan();
            }).start();
        }
    }
}
  • 这里注意几个点

    • 需要在构造方法中输出

    • 而不是在

      java 复制代码
      new Thread(()->{
          System.out.println(LazyMan.getLazyMan());
      }).start();
      • 因为sout是加锁的,所以拿到都是同一个对象
    • 这样才能测试出结果

解决问题

  • 双重检测锁【DCL懒汉式】
    • 为什么需要二次判断
    • 因为第一个判断是在同步代码块外的,所以很多线程都会去判断
    • 如果没有第二个判断,可能存在有线程已经创建了实例,所以会创建出多个实例
    • 当然你直接将整个代码块全部锁上也是可以的
    • 这个代码也是不安全的
    • 因为创建对象也不是原子性操作
      • 分配空间
      • 执行构造方法,初始化对象
      • 把对象指向这个空间
    • 所以也是不安全的,会出现重排,导致不安全
    • 需要给对象加上volatile,防治重排
java 复制代码
//双重检测锁,解决这个问题
private static LazyMan getLazyMan(){
    if(lazyMan == null){
        synchronized (LazyMan.class) {
            if(lazyMan == null){
                lazyMan = new LazyMan();
            }

        }
    }
    return lazyMan;
}
  • 双重检测锁的问题

    java 复制代码
    public static void main(String[] args) throws NoSuchMethodException, InvocationTargetException, InstantiationException, IllegalAccessException {
        //通过构建实例,构建对象
        LazyMan lazyMan = LazyMan.getLazyMan();
        //getClass拿到反射对象,通过反射对象获取到构造方法,因为是无参,所以是null
        Constructor<? extends LazyMan> constructor = lazyMan.getClass().getDeclaredConstructor(null);
        //将私有变量变为公有变量
        constructor.setAccessible(true);
        //创建实例
        LazyMan lazyMan1 = constructor.newInstance();
    
        //或者
        LazyMan lazyMan2 = new LazyMan();
        System.out.println(lazyMan);
        System.out.println(lazyMan1);
        System.out.println(lazyMan2);
    }
    • 通过反射将其破坏了
  • 解决方式

    • 创建对象的时候,添加判断
java 复制代码
private LazyMan() {
    synchronized (LazyMan.class){
        if(lazyMan != null){
            throw new RuntimeException("实例已经被创建");
        }
    }
}
  • 出现新的问题
    • 之前通过实例.getClass(),拿到反射对象,现在直接LazyMan.Class拿到对象,也不new对象了,直接newInstance(),获得到对象,这样单例模式还是被破坏了
java 复制代码
public static void main(String[] args) throws NoSuchMethodException, InvocationTargetException, InstantiationException, IllegalAccessException {
    //通过构建实例,构建对象
    //LazyMan lazyMan = LazyMan.getLazyMan();
    //getClass拿到反射对象,通过反射对象获取到构造方法,因为是无参,所以是null
    Constructor<? extends LazyMan> constructor = LazyMan.class.getDeclaredConstructor(null);
    //将私有变量变为公有变量
    constructor.setAccessible(true);
    //创建实例
    LazyMan lazyMan1 = constructor.newInstance();
    LazyMan lazyMan2 = constructor.newInstance();
    
    System.out.println(lazyMan1);
    System.out.println(lazyMan2);
}
  • 枚举类

    • 枚举类是没有不可以通过反射办法破环单例模式的

    • 可以看出如果获取枚举类的instance是会抛出异常的

    • 尝试破坏枚举类的单例模式

    java 复制代码
    public enum LazyEnum {
    
        INSTANCE;
    
    
    }
    class Test{
        public static void main(String[] args) throws InvocationTargetException, InstantiationException, IllegalAccessException, NoSuchMethodException {
            LazyEnum instance = LazyEnum.INSTANCE;
            System.out.println(instance);
    
    
            Constructor<LazyEnum> declaredConstructor = LazyEnum.class.getDeclaredConstructor(String.class, int.class);
            declaredConstructor.setAccessible(true);
            LazyEnum lazyEnum = declaredConstructor.newInstance();
            System.out.println(lazyEnum);
        }
    }
    • 关于这个为什么是一个有参数的构造

      • 如何知道枚举类是有参构造还是无参构造

      • 这里显示了是一个无参构造

      • 对于字节码文件的查看,显示的也是无参构造

    • 如果是无参构造就会抛出NoSuchMethod的错误,表示没有这个方法

    • 需要使用别的方法去查看到底是有参数还是无参构造

      • 使用的软件是jad.exe
      • 将LazyEnum.class文件反编译成Lazy.java文件,再进去查看,这样我们可以得到一个含有有参构造的构造函数,参数分别是Sring 和 int(注意不是Integer)
相关推荐
ftpeak10 分钟前
Python win32底层开发从入门到实战
开发语言·python·win32api
阿正的梦工坊12 分钟前
JavaScript 函数组合(Compose & Pipe)详解
开发语言·javascript·网络
lly20240614 分钟前
Python uWSGI 安装配置
开发语言
两年半的个人练习生^_^29 分钟前
每日一学:设计模式之原型模式
java·开发语言·设计模式·原型模式
elseif12330 分钟前
初学者必背【考点清单(大全)】【上篇】
开发语言·c++·笔记·学习·循环结构·分支结构·考纲
并不喜欢吃鱼31 分钟前
从零开始C++----二.(下篇)模版进阶与编译全过程的复习
开发语言·c++
234710212733 分钟前
4.17 学习笔记
开发语言·软件测试·笔记·python·学习
不知名的老吴1 小时前
View的三大特性之一:迟绑定
开发语言·c++·算法
深邃-1 小时前
【Web安全】-基础环境安装:虚拟机安装,JDK环境安装(1)
java·开发语言·计算机网络·安全·web安全·网络安全·安全架构
前端老石人1 小时前
前端网站换肤功能的 3 种实现方案
开发语言·前端·css·html