当前位置:网站首页>Interviewer: let's talk about the process of class loading and the mechanism of class loading (parental delegation mechanism)
Interviewer: let's talk about the process of class loading and the mechanism of class loading (parental delegation mechanism)
2022-04-23 14:35:00 【Java ape~】
Catalog
When will class loading be performed ?
️ What is the parent delegate model ?
The advantages of the parental delegation model
When will class loading be performed ?
java Class name ,Java The entry class of the program , You need to load the class first and then execute main Method
When the program is running , perform Static method calls , Static variables and other operations
new object When
Create a class object through reflection , Then you can generate instance objects through reflection , Or call static methodsClass loading is performed only once , When class loading is completed , The method area will store class information , The heap will hold class objects
In multithreaded environment ,JVM Perform class loading When , Will use synchronized Lock Come on Ensure thread safety , Because class loading can only be performed once
The process of class loading
🧬 Learn about the learning class before loading it The life cycle of a class :

The first five steps are the process of class loading in order , The middle three steps belong to connection , So for class loading, the steps are as follows :
load
Connect : verification , Get ready , analysis
initialization
️ load
Be careful : The loading here should be distinguished from class loading , Loading is only one stage of the class loading process
During the loading phase ,JVM Virtual opportunity does the following three things :
Get the binary byte stream that defines this class by using the fully qualified name of a class
Convert the static storage structure represented by the byte stream into the runtime data structure of the method area
Generate a representation of this class in memory java.lang.Class Object is used as the access entry for various data of this class in the method area
In short , Just load class Bytecode ( binary data ) Method to area , A... Is generated in the heap Class object
️ Connect
🪞 verification
Verification is the first step in the connection , This stage is Guarantee Class file The information contained in the byte stream accord with java Virtual machine specification , Ensure that this information , Will not endanger the security of the virtual machine itself
🧭 Get ready
The preparation phase is formal In class Define sub variable ( Static variables ) Allocate memory and set Variable Initial value
For example, a piece of code like this :
public static int val = 10;
it Initialize to val The value of is 0, No 10, because 10 It was only after initialization that it was assigned 10 This value
The initial value of the object is null, The initial value of the basic data type is the basic type as the default value of the member variable , such as int The initial value is 0,boolean The initial value is false
️ analysis
The parsing phase is Java Virtual machines will Replace symbolic references in the runtime constant pool with direct references The process of , That is to say Initializing constants The process of
🧯 Symbol reference : Compilation of class In file , There are references to worthy correspondence , In the memory that has not been loaded at this time , Just use “ Symbol reference ” To express this relationship
🧯 Direct reference : Perform class loading , hold class After the bytecode is loaded into the memory , The relationship between variable and value embodied in memory is direct reference
️ initialization
Initialization phase ,Java The virtual machine really starts to execute... In the class Java Code , This stage is the process of executing the class constructor method
Static variables are only initialized and assigned at this stage
* Parent delegation model
Two points to know when learning the parental delegation mechanism :
Parent delegation model jdk The loading mechanism of the default class
Perform class loading , yes Java Virtual machines load classes through class loaders
️ What is the parent delegate model ?
If a class loader receives a class load request , it I won't try to load this class first , But put this Request delegate to parent loader To execute , The same is true for the parent loader that receives this request , Finally, the request will be delegated to the top-level startup class loader , Only When the parent loader feedback fails to load the request ( It did not find the required class in its search scope ) when , The child loader will try to load itself
BootStrap Start class loader (BootStrap ClassLoader)
Ext Extend the classloader (Extension ClassLoader)
App application / system class loader (Application ClassLoader)
Custom class loaders
From top to bottom corresponds to the hierarchical relationship from parent to child
Two exceptions that class loading must understand :
🪟ClassNotFoundException: Class cannot be found when loading class file
🪟NoClassDefFoundError: Class found class file , But class loading error , There is no class information in the method area , There are no class objects in the heap
The advantages of the parental delegation model
️ Avoid repeatedly loading classes : When a class is loaded by the parent class loader , It will not be sent to the subclass loader to perform loading
To ensure safety : Such as Object,String Classes and so on use jdk Provide classes instead of using self-defined java.lang.Object, If a hacker uploads one from the network java.lang.Object Binary data of , If there is no parental delegation mechanism, security is guaranteed , There will be security risks
Using the parental delegation mechanism , The priority of ensuring loading is jdk Class provided
Do not use the parental delegation mechanism , Load custom classes ,jdk There will also be secure authentication
版权声明
本文为[Java ape~]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204231433426528.html
边栏推荐
- 八路抢答器系统51单片机设计【附Proteus仿真、C程序、原理图及PCB文件、元器件清单和论文等】
- C语言知识点精细详解——初识C语言【1】——你不能不知的VS2022调试技巧及代码实操【1】
- API Gateway/API 网关(三) - Kong的使用 - 限流rate limiting(redis)
- Processing MKDIR: unable to create directory 'AAA': read only file system
- 【JZ46 把数字翻译成字符串】
- Redis源码分析之HSET流程与ziplist
- QT actual combat: Yunxi chat room
- C语言知识点精细详解——初识C语言【1】——你不能不知的VS2022调试技巧及代码实操【2】
- 8.4 循环神经网络从零实现
- TUN 设备原理
猜你喜欢

I thought I could lie down and enter Huawei, but I was confused when I received JD / didi / iqiyi offers one after another

51 MCU + LCD12864 LCD Tetris game, proteus simulation, ad schematic diagram, code, thesis, etc

Qt界面优化:Qt去边框与窗体圆角化

AT89C51单片机的数字电压表开发,量程0~5V,proteus仿真,原理图PCB和C程序等

555定时器+74系列芯片搭建八路抢答器,30s倒计时,附Proteus仿真等

一款不错的工具:aardio

MySQL报错packet out of order

Matlab Simulink modeling and design of single-phase AC-AC frequency converter, with MATLAB simulation, PPT and papers

LM317的直流可调稳压电源Multisim仿真设计(附仿真+论文+参考资料)

一个月把字节,腾讯,阿里都面了,写点面经总结……
随机推荐
Matlab Simulink modeling and design of single-phase AC-AC frequency converter, with MATLAB simulation, PPT and papers
Sed learning for application
如何5分钟上手使用OCR
8.2 文本预处理
Detailed explanation of SAR command
Qt实战:云曦聊天室篇
【JZ46 把数字翻译成字符串】
8.5 循环神经网络简洁实现
初识STL
A good tool: aardio
MySQL报错packet out of order
MQ-2和DS18B20的火灾温度-烟雾报警系统设计,51单片机,附仿真、C代码、原理图和PCB等
数组模拟队列进阶版本——环形队列(真正意义上的排队)
Solve the problem of SSH configuration file optimization and slow connection
Golang 对分片 append 是否会共享数据
抑郁症治疗的进展
一个月把字节,腾讯,阿里都面了,写点面经总结……
SHT11传感器的温度湿度监控报警系统单片机Proteus设计(附仿真+论文+程序等)
Parameter stack pressing problem of C language in structure parameter transmission
全连接层的作用是什么?