理解ClassLoader.java

        本节重点针对Java的ClassLoader的部分源码以及注释进行解读。我相信很多时候,我们没必要去速度获取别人给你的答案,通过自己去阅读官方的诠释,将会更有底气。 

1、ClassLoader是什么?


       A class loader is an object that is responsible for loading classes. The class ClassLoader is an abstract class. Given the binary name of a class, a class loader should attempt to locate or generate data that constitutes a definition for the class. A typical strategy is to transform the name into a file name and then read a "class file" of that name from a file system.

        翻开ClassLoader的源代码,查看类注释,你会发现第一段就是对于Classloader的解释,大致意思是:ClassLoader实例是用于加载 Class的,根据类的 binary name 获取到该类的结构定义(其实就是Class结构,这里的 binary name 指的是:javax.swing.JSpinner$DefaultEditor、java.lang.String等)。常见的策略是根据binary name获取到 .class 文件,根据文件系统进行类加载。

2、获取ClassLoader


Every Class object contains a reference to the ClassLoader that defined it.

参考Class.getClassLoader()的注释:

Returns the class loader for the class. Some implementations may use null to represent the bootstrap class loader. This method will return null in such implementations if this class was loaded by the bootstrap class loader. If this object represents a primitive type or void, null is returned. 

       这段话也是很直白,所有Class对象都会持有一个定义当前Class的ClassLoader的引用。当然也有返回null的两种情况,1、通过Bootstrap类加载器进行加载的类;2、原始类型(int, long等)、void。但我们在编写代码中原始类型是没有函数概念,我认为是在JVM层面,原始类型和void不属于Class的范畴,自然也没所谓加载器了。

发散一下:

        1、ClassLoader是一个抽象类,那么返回的加载器,应该是可以自定义的?

        2、Bootstrap 是什么?

        3、加载的时机

3、数组类的加载器


Class objects for array classes are not created by class loaders, but are created automatically as required by the Java runtime. The class loader for an array class, as returned by Class.getClassLoader() is the same as the class loader for its element type; if the element type is a primitive type, then the array class has no class loader.

        Java对象概念中,存在引用类型,原始类型。而引用类型会有一个数组类型特殊存在。以上是数组对象的Class加载器的说明,如:T[ ],那么Class加载器则是元素类型T所属的Class加载器,如果是原始类型数组,如: int[ ],那么是没有加载器的,这里的没有加载器我倾向是上面提到的原始类型同样的含义。

4、加载模式


The ClassLoader class uses a delegation model to search for classes and resources. Each instance of ClassLoader has an associated parent class loader. When requested to find a class or resource, a ClassLoader instance will delegate the search for the class or resource to its parent class loader before attempting to find the class or resource itself. The virtual machine's built-in class loader, called the "bootstrap class loader", does not itself have a parent but may serve as the parent of a ClassLoader instance.

        Class加载器是通过委托模式检索类与资源,每个Class加载器对象都持有父类加载器。JVM内置了一个名为 bootstrap class loader 的root级别的类加载器。

具体的加载逻辑:

        1、委托父类加载器进行类和资源的检索(检索成功即发起加载,父类也会先委托上一级父类发起检索,直到 bootstrap class loader)

        2、如果祖先加载器检索未成功,则自己处理。 

委托模式实现逻辑

网上有个大众的叫法:双亲模式、双亲委托、双亲等等。其实在JDK自身的命名中,并未出现过,可能是和内置了两个加载器有关?非常仔细的朋友可能会发现:说好的类加载,为何会出现关键字resources?我相信在某个概念层次,JDK把Class和Resource看成了统一概念,Class是重点,其他资源则通过资源加载进行封装,如图片、文本、音频等文件资源。

 发散一下:为何需要使用委托模式进行类加载?

5、并行加载:parallel capable


        Class loaders that support concurrent loading of classes are known as parallel capable class loaders and are required to register themselves at their class initialization time by invoking the ClassLoader.registerAsParallelCapable method. Note that the ClassLoader class is registered as parallel capable by default. However, its subclasses still need to register themselves if they are parallel capable. 

In environments in which the delegation model is not strictly hierarchical, class loaders need to be parallel capable, otherwise class loading can lead to deadlocks because the loader lock is held for the duration of the class loading process (see loadClass methods).

          类加载器在类初始化时,通过调用  ClassLoader.registerAsParallelCapable 来标记该加载器支持并行类加载机制。支持该机制的加载器称之为 可并行 的类加载器。需要注意的是,ClassLoader类是默认可并行加载的,但它的子类仍须通过注册接口调用来支持可并行机制,也就是说,可并行机制不可继承。

        在委托结构设计不是很有层次性(如出现闭环委托)的情况下,这些类加载器需要实现并行机制,否则会出现死锁问题。具体可以参考loadClass的函数源码。其实本文的第一张图片就是该函数代码,出现死锁的情况是在 synchronized 代码块上。JDK1.7在将对象级别的锁降级到被加载的类的级别上,也就是说不同的类加载,不需要在等待锁释放,当然,这前提是显示的调用了 ClassLoader.registerAsParallelCapable。查看getClassLoadingLock你会发现,如果没注册可并行机制,返回的对象锁还是当前对象 this。其实对于并行加载,我在工作中很少接触,这里我不打算做太多的发散,但能肯定的是,用的到这个机制的,绝对是对加载性能要求特别高,甚至是一些模块化加载的项目,如 OSGI 这类。这里我只给自己Mark,等真的有实际场景再去体会,我想我会更加深刻。

        到此为止,ClassLoader的主要核心部分代码已经解读得差不多了,其实和其他人说的或者都差不多,但我想说的是,这是官方声明的,不存在误导,还温习了一波英文。关于类加载器,其实有很多思考,比如说为何JVM要使用委托模式加载类?我希望读者和我一起思考,如果你也和我一样有很多疑问,请给我留言,谢谢你的阅读。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,794评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,050评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,587评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,861评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,901评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,898评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,832评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,617评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,077评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,349评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,483评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,199评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,824评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,442评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,632评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,474评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,393评论 2 352