类的加载器 ClassLoader
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了类的加载器 ClassLoader相关的知识,希望对你有一定的参考价值。
先说明类的加载过程:
当程序主动使用某个类时,如果该类还未被加载到内存中,则系统会通过如下三个步骤来对该类进行初始化:
而关于ClassLoader:
类加载器是用来把类(class)装载进内存的。JVM 规范定义了两种类型的类加载器:启动类加载器(bootstrap)和用户自定义加载器(user-defined class loader)。 JVM在运行时会产生3个类加载器组成的初始化加载器层次结构 ,如下图所示:
举例如下:
public class TestClassLoader {
public static void main(String[] args) throws ClassNotFoundException {
ClassLoader classLoader1 = ClassLoader.getSystemClassLoader();// 获取系统类加载器
System.out.println(classLoader1);// [email protected]
ClassLoader classLoader2 = classLoader1.getParent();// 获取扩展类加载器
System.out.println(classLoader2);// [email protected]
ClassLoader classLoader3 = classLoader2.getParent();// 尝试获取引导类加载器
System.out.println(classLoader3);// null
ClassLoader classLoader4 = String.class.getClassLoader();// 核心类库使用引导类加载器
System.out.println(classLoader4);// null
ClassLoader classLoader5 = com.cdf.reflection.Person.class.getClassLoader();// 自建类使用系统类加载器
System.out.println(classLoader5);// [email protected]
}
}
需要说明的是,常用类加载器来获取当前包下的文件:
以上是关于类的加载器 ClassLoader的主要内容,如果未能解决你的问题,请参考以下文章
JVM16_类的概述分类ClassLoader源码分析自定义类的加载器双亲委派机制沙箱安全机制
我的面试经之JVM类加载器子系统ClassLoader类的加载过程