In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
This article mainly explains "the principle of Java parent appointment mechanism". Friends who are interested may wish to have a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn "the principle of Java parent appointment mechanism".
Parental appointment mechanism
I opened my AndroidStudio, searched "ClassLoader", and then opened the ClassLoader class under the "java.lang" package. Then turn the code to the loadClass method:
Public Class loadClass (String name) throws ClassNotFoundException {
Return loadClass (name, false)
}
/ / -?
Protected Class loadClass (String name, boolean resolve)
Throws ClassNotFoundException
{
/ / First, check if the class has already been loaded
Class c = findLoadedClass (name)
If (c = = null) {
Try {
If (parent! = null) {
C = parent.loadClass (name, false)
} else {
C = findBootstrapClassOrNull (name)
}
} catch (ClassNotFoundException e) {
/ / ClassNotFoundException thrown if class not found
/ / from the non-null parent class loader
}
If (c = = null) {
/ / If still not found, then invoke findClass in order
/ / to find the class.
C = findClass (name)
}
}
Return c
}
In fact, this code has a good explanation of the parent delegation mechanism, in order to make it easier for you to understand, I have made a picture to describe how the above code is done:
It is easier to understand from the image above when a file like Hello.class is about to be loaded. Regardless of our custom classloader, we will first check in AppClassLoader to see if it has been loaded, and if so, there is no need to load it again. If not, the parent loader is taken and the loadClass method of the parent loader is called. The same person in the parent class first checks to see if it has been loaded, if not further up. Pay attention to this process, knowing that no loader chooses to load until it reaches Bootstrap classLoader. If the parent loader fails to load, it sinks to the child loader to load, down to the bottom, and if no loader can load, a ClassNotFoundException is thrown.
Why design this mechanism?
One advantage of this design is that if someone wants to replace the system-level class: String.java. Tamper with its implementation, but under this mechanism, the classes of these systems have already been loaded by Bootstrap classLoader, so they will not be loaded again, preventing the implantation of dangerous code to a certain extent.
At this point, I believe you have a deeper understanding of "the principle of Java parent appointment mechanism". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.