当前位置:网站首页>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
边栏推荐
- ASEMI整流模块MDQ100-16在智能开关电源中的作用
- qt之.pro文件详解
- C语言知识点精细详解——初识C语言【1】
- 全连接层的作用是什么?
- 单相交交变频器的Matlab Simulink建模设计,附Matlab仿真、PPT和论文等资料
- 1 minute to understand the execution process and permanently master the for cycle (with for cycle cases)
- AT89C52单片机的频率计(1HZ~20MHZ)设计,LCD1602显示,含仿真、原理图、PCB与代码等
- 51单片机的直流电机PWM调速控制系统(附Proteus仿真+C程序等全套资料)
- TLC5615 based multi-channel adjustable CNC DC regulated power supply, 51 single chip microcomputer, including proteus simulation and C code
- 关于UDP接收icmp端口不可达(port unreachable)
猜你喜欢
数组模拟队列进阶版本——环形队列(真正意义上的排队)
AT89C52单片机的频率计(1HZ~20MHZ)设计,LCD1602显示,含仿真、原理图、PCB与代码等
I thought I could lie down and enter Huawei, but I was confused when I received JD / didi / iqiyi offers one after another
Qt实战:云曦日历篇
API Gateway/API 网关(四) - Kong的使用 - 集成Jwt和熔断插件
阿里研发三面,面试官一套组合拳让我当场懵逼
DS1302的电子万年历_51单片机,年月日、星期、时分秒、农历和温度,带闹钟,全套资料
TLC5615 based multi-channel adjustable CNC DC regulated power supply, 51 single chip microcomputer, including proteus simulation and C code
51 MCU flowers, farmland automatic irrigation system development, proteus simulation, schematic diagram and C code
全连接层的作用是什么?
随机推荐
Eight way responder system 51 Single Chip Microcomputer Design [with Proteus simulation, C program, schematic diagram, PCB files, component list and papers, etc.]
Qt实战:云曦日历篇
API Gateway/API 网关(四) - Kong的使用 - 集成Jwt和熔断插件
QT interface optimization: double click effect
详解TCP的三次握手
Master in minutes --- ternary operator (ternary operator)
金九银十,入职字节跳动那一天,我哭了(蘑菇街被裁,奋战7个月拿下offer)
ASEMI三相整流桥和单相整流桥的详细对比
Detailed explanation of C language knowledge points -- first knowledge of C language [1]
Find daffodils - for loop practice
Matlab Simulink modeling and design of single-phase AC-AC frequency converter, with MATLAB simulation, PPT and papers
线程同步、生命周期
AT89C51单片机的数字电压表开发,量程0~5V,proteus仿真,原理图PCB和C程序等
Electronic perpetual calendar of DS1302_ 51 single chip microcomputer, month, day, week, hour, minute and second, lunar calendar and temperature, with alarm clock and complete set of data
Notes on Visio drawing topology
分分钟掌握---三目运算符(三元运算符)
【Proteus仿真】自动量程(范围<10V)切换数字电压表
Man man notes and @ reboot usage of crontab
想要成为架构师?夯实基础最重要
Nacos uses demo as configuration center (IV)