当前位置:网站首页>JVM 类加载机制
JVM 类加载机制
2022-07-07 17:52:00 【whiteye太白】
类加载机制
加载 —> 连接(验证 -> 准备 -> 解析)—> 初始化 —> 使用 —> 卸载
1. 加载
- 通过全类名获取定义此类的二进制字节流
- 将字节流所代表的静态存储结构转换为方法区的运行时数据结构
- 在内存中生成一个代表该类的 Class 对象,作为方法区这些数据的访问入口
2. 验证
- class文件格式验证:class文件规范
- 元数据验证:语义分析,是否符合java语言规范
- 字节码验证:操作指令合法
- 符号引用验证:确保解析动作正确执行
3. 准备
为类的静态变量分配内存,并将其初始化为默认值。
(不是赋初值,final 关键字修饰的静态常量则直接赋初值,加载到方法区运行时常量池。)
4. 解析
将常量池内的符号引用替换为直接引用的过程。
5.初始化
为类的静态变量赋予正确的初始值,JVM负责对类进行初始化,主要对类变量进行初始化。
初始化类触发: new实例对象、访问类的静态变量、调用类的静态方法、反射调用类、子类需初始化时先初始化父类(接口同样)、mian方法类。
6. 卸载
- 该类的所有的实例对象都已被 GC,也就是说堆不存在该类的实例对象。
- 该类没有在任何地方被引用。
- 该类的类加载器的实例已被 GC。
边栏推荐
- AD域组策略管理
- CMD command enters MySQL times service name or command error (fool teaching)
- 8 CAS
- 831. KMP字符串
- How to buy bank financial products? Do you need a bank card?
- 关于ssh登录时卡顿30s左右的问题调试处理
- Experiment 1 of Compilation Principle: automatic implementation of lexical analyzer (Lex lexical analysis)
- Jerry's headphones with the same channel are not allowed to pair [article]
- Automatic classification of defective photovoltaic module cells in electroluminescence images-论文阅读笔记
- Semantic SLAM源码解析
猜你喜欢
随机推荐
[Verilog advanced challenge of Niuke network question brushing series] ~ multi bit MUX synchronizer
Implement secondary index with Gaussian redis
Openeuler prize catching activities, to participate in?
Experiment 1 of Compilation Principle: automatic implementation of lexical analyzer (Lex lexical analysis)
How to buy bank financial products? Do you need a bank card?
索引总结(突击版本)
what‘s the meaning of inference
openEuler 资源利用率提升之道 01:概论
R语言使用ggplot2函数可视化需要构建泊松回归模型的计数目标变量的直方图分布并分析构建泊松回归模型的可行性
杰理之按键发起配对【篇】
L1-027 rental (Lua)
杰理之手动配对方式【篇】
线性基
How to buy stocks on your mobile phone and open an account? Is it safe to open an account
杰理之开机自动配对【篇】
Redis——基本使用(key、String、List、Set 、Zset 、Hash、Geo、Bitmap、Hyperloglog、事务 )
9 atomic operation class 18 Rohan enhancement
how to prove compiler‘s correctness
R language dplyr package mutate_ At function and min_ The rank function calculates the sorting sequence number value and ranking value of the specified data column in the dataframe, and assigns the ra
一张图深入的理解FP/FN/Precision/Recall