Java类加载器ClassLoader的理解

关于类装载这块目前的理解:

image.png

一个java类的生命周期包括:
加载--》连接(验证,准备,解析)--》初始化--》使用--》卸载.

其中从加载开始到堆中新建了一个对象的过程如下:首先从方法区拿到类的class文件,通过classLoader将类对象加载到虚拟机,通过初始化过程执行类的构造器<clinit>,为类的静态变量赋予正确的初始值,执行类的构造方法,实例化对象。

在初始化过程中,静态类变量和静态语句块执行的先后顺序依赖于他们出现在代码中的先后顺序。

类加载的过程使用了双亲委派模型,这样可以避免重复加载。
JDK已有的类加载器:

  • BootStrapClassLoader JVM启动的类加载器(C++),它主要加载jre的lib下面的jar包,例如rt.jar.
  • ExtensionClassLoader extends ClassLoader,加载%JAVA_HOME%/lib/ext/*.jar。
  • AppClassLoader extends ClassLaoder,加载当前程序classpath下面的java类。
  • 自定义的类加载器 extends ClassLoader,完全自定义家在路径。

以下是jdk的双亲委派模型加载类的具体实现源码:

/**
     * Loads the class with the specified <a href="#name">binary name</a>.  The
     * default implementation of this method searches for classes in the
     * following order:
     *
     * <ol>
     *
     *   <li><p> Invoke {@link #findLoadedClass(String)} to check if the class
     *   has already been loaded.  </p></li>
     *
     *   <li><p> Invoke the {@link #loadClass(String) <tt>loadClass</tt>} method
     *   on the parent class loader.  If the parent is <tt>null</tt> the class
     *   loader built-in to the virtual machine is used, instead.  </p></li>
     *
     *   <li><p> Invoke the {@link #findClass(String)} method to find the
     *   class.  </p></li>
     *
     * </ol>
     *
     * <p> If the class was found using the above steps, and the
     * <tt>resolve</tt> flag is true, this method will then invoke the {@link
     * #resolveClass(Class)} method on the resulting <tt>Class</tt> object.
     *
     * <p> Subclasses of <tt>ClassLoader</tt> are encouraged to override {@link
     * #findClass(String)}, rather than this method.  </p>
     *
     * <p> Unless overridden, this method synchronizes on the result of
     * {@link #getClassLoadingLock <tt>getClassLoadingLock</tt>} method
     * during the entire class loading process.
     *
     * @param  name
     *         The <a href="#name">binary name</a> of the class
     *
     * @param  resolve
     *         If <tt>true</tt> then resolve the class
     *
     * @return  The resulting <tt>Class</tt> object
     *
     * @throws  ClassNotFoundException
     *          If the class could not be found
     */
    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;
        }
    }

画成流程图是这样:

classloader.png

下面用demo来看一下:

package com.hp.demo.classLoader;

import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;

/**
 * <pre>
 * 任务:
 * 描述:自定义classLoader,从文件系统中加载类
 * 作者:@author huangpeng
 * 时间:@create 2018-08-05 上午9:10
 * 类名: MyClassLoader
 * </pre>
 **/

public class MyClassLoader extends ClassLoader {

    private String path; //加载的类的路径
    private String name; //类加载器名称

    public MyClassLoader(String name,String path) {
        super();//让系统类加载器成为该类的父加载器
        this.name = name;
        this.path = path;
    }

    public MyClassLoader(ClassLoader parent,String name,String path) {
        super(parent);//显示指定父类加载器
        this.name = name;
        this.path = path;
    }

    @Override
    protected Class<?> findClass(String name) throws ClassNotFoundException{
        byte[] data = readClassFileToByteArray(name);
        return this.defineClass(name,data,0,data.length);
    }

    @Override
    public String toString() {
        return this.name;
    }

    /**
     * 获取class文件的字节数组
     * @param name
     * @return
     */
    private byte[] readClassFileToByteArray(String name) {
        InputStream is = null;
        byte[] returnData = null;
        name = name.replaceAll("\\.", File.separator);
        String filePath = this.path + name +".class";
        File file = new File(filePath);

        ByteArrayOutputStream os = new ByteArrayOutputStream();
        try{
            is = new FileInputStream(file);
            int tmp = 0;
            while((tmp = is.read())!=-1){
                os.write(tmp);
            }
            returnData = os.toByteArray();
        }catch (Exception e){
            e.printStackTrace();
        }finally {
            try{
                is.close();
                os.close();
            }catch (Exception e1){

            }
        }
        return returnData;
    }
}

package com.hp.demo.classLoader;

/**
 * <pre>
 * 任务:
 * 描述:测试我的自定义ClassLoader
 * 作者:@author huangpeng
 * 时间:@create 2018-08-05 上午9:29
 * 类名: TestDemo
 * </pre>
 **/

public class TestDemo {
    public static void main(String[] args) throws ClassNotFoundException, IllegalAccessException, InstantiationException {
        MyClassLoader huangpengLoader = new MyClassLoader("huangpeng","/Users/huangpeng/workspace/temp/");
        // null代表 BootStrap ClassLoader
        MyClassLoader loader = new MyClassLoader(null,"lunabird","/Users/huangpeng/workspace/temp/");
        Class<?> c = loader.loadClass("com.hp.demo.classLoader.Demo");
        c.newInstance();
    }
}

运行结果:

MyClassLoader loader = new MyClassLoader("lunabird","/Users/huangpeng/workspace/temp/");
加载本项目路径下的Demo类,不设置parent,默认的parent是AppClassLoader,加载classpath下的类。

MyClassLoader loader = new MyClassLoader(huangpengLoader,"lunabird","/Users/huangpeng/workspace/temp/");
加载本项目路径下的Demo类,因为设置了loader的parent是huangpengLoader,huangpengLoader的parent默认是AppClassLoader,加载classpath下的类。

 MyClassLoader loader = new MyClassLoader(null,"lunabird","/Users/huangpeng/workspace/temp/");
加载文件系统中的Demo类。因为设置了loader的parent为null,即BootStrapClassLoader,根据双亲委派模型BootStrapClassLoader加载不到类是会调用自定义的findClass回调函数,于是就调用到文件系统的类了。
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,311评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,339评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,671评论 0 342
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,252评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,253评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,031评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,340评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,973评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,466评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,937评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,039评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,701评论 4 323
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,254评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,259评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,485评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,497评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,786评论 2 345

推荐阅读更多精彩内容