What is Java Classloader?
Java Classloader is part of Java runtime environment which loads class on demand (lazy loading) into JVM (Java Virtual Machine) not only from local file system but from remote system or web.
There are 3 types of Classloader.
i. Bootstrap Classloader: Loads core java API file rt.jar from <JAVA_HOME/jre/lib> folder.
ii. Extension Classloader: Loads jar files from <JAVA_HOME/jre/lib/ext> folder.
iii. System/Application Classloader: Loads jar files from path specified in environment variable as CLASSPATH.
| Is This Answer Correct ? | 3 Yes | 0 No |
what is the reason behind non static method cannot be referenced from a static Context?
How do I stop concurrentmodificationexception?
What does percent mean in java?
what is the default value of a variable char?(If not assigned)
Why is multithreading important?
Write the algorithm to check the number non-leaf nodes in a tree.
Difference between this() and super() in java ?
What is an example of a keyword?
What is a method in coding?
What is private static in java?
waht You know about thread programming?
Why should I use abstract class?