首页 > 其他分享 >双亲委派

双亲委派

时间:2022-09-22 14:37:33浏览次数:29  
标签:委派 ClassNotFoundException name parent 双亲 null class 加载

ClassLoader类中负责根据类的完整路径加载class的过程

 

/*
 * @param name 类的完整路径 
 */
protected Class<?> loadClass(String name, boolean resolve)
        throws ClassNotFoundException
    {
        // 同步代码块,避免多个线程同时加载类。
        synchronized (getClassLoadingLock(name)) {
            // 首先要在方法区查找name的类是否已经被加载了
            Class<?> c = findLoadedClass(name);
            // 方法区中还没有name对应的类
            if (c == null) {
                long t0 = System.nanoTime();
                try {
                    // 通过父类加载器加载name的类
                    if (parent != null) { //不考虑自定义类加载器,则parent为extClassLoader
                        c = parent.loadClass(name, false); // 递归查找
                    } else {
                        // 当前的类加载器是extClassLoader
                        // 因此需要从extClassLoader的父类加载器BootstrapClassLoader
                        c = findBootstrapClassOrNull(name);
                    }
                } catch (ClassNotFoundException e) {
                    // ClassNotFoundException thrown if class not found
                    // from the non-null parent class loader
                }

                if (c == null) {
                    // If still not found, then invoke findClass in order
                    // to find the class.
                    long t1 = System.nanoTime();
                    c = findClass(name);

                    // this is the defining class loader; record the stats
                    sun.misc.PerfCounter.getParentDelegationTime().addTime(t1 - t0);
                    sun.misc.PerfCounter.getFindClassTime().addElapsedTimeFrom(t1);
                    sun.misc.PerfCounter.getFindClasses().increment();
                }
            }
            if (resolve) {
                resolveClass(c);
            }
            return c;
        }
    }

 

标签:委派,ClassNotFoundException,name,parent,双亲,null,class,加载
From: https://www.cnblogs.com/huang2979127746/p/16719123.html

相关文章

  • 面试~jvm(JVM内存结构、类加载、双亲委派机制、对象分配,了解垃圾回收)
    一、JVM内存结构▷谈及内存结构各个部分的数据交互过程:还可以再谈及生命周期、数据共享;是否GC、是否OOM答:jvm内存结构包括程序计数器、虚拟机栈、本地方法栈、堆、方......
  • 面试~双亲委派模型
    一、类加载涉及到类加载器(需要准备相关的类加载知识)1、什么是类加载?类加载的过程?类加载:是指虚拟机把描述类的数据加载到内存里面,并对数据进行校验、解析和初始化,最......
  • java中类加载与双亲委派机制
    类加载是什么把磁盘中的java文件加载到内存中的过程叫做类加载当我们用java命令运行某个类的main函数启动程序时,首先需要通过类加载器把主类加载到JVM.有如下User类p......