java双亲委派模式加载类

双亲委派的源码在ClassLoader 的 loadClass() 方法中,其实现原理如下:

  • 1.检查目标class是否曾经加载过,如果加载过则直接返回;
  • 2.如果没加载过,把加载请求传递给 parent 加载器去加载;
  • 3.如果 parent 加载器加载成功,则直接返回;
  • 4.如果 parent 未加载到,则自身调用 findClass() 方法进行寻找,并把寻找结果返回。
protected Class loadClass(String name, boolean resolve)
        throws ClassNotFoundException
    {
        synchronized (getClassLoadingLock(name)) {
            // First, check if the class has already been loaded
            Class c = findLoadedClass(name);
            if (c == null) {
                long t0 = System.nanoTime();
                try {
                    if (parent != null) {
                        c = parent.loadClass(name, false);
                    } else {
                        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;
        }
    }

参考Java 技术之类加载机制

你可能感兴趣的:(java双亲委派模式加载类)