Answer Posted / javamasque
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 |
Post New Answer View All Answers
Can I override protected method in java?
What is the similarity between dynamic binding and linking?
What is the difference between JVM and JRE?
How we can declare a static variable?
What is the method in java?
How do you use compareto method?
What methods are used in Servlet?Applet communication?
What are drawbacks of singleton class?
What is unicode in java?
What is the purpose of the finalize() method?
Explain the importance of finalize() method.
Explain the difference between protected and default access.
How to create a thread in java?
What are the benefits of operations?
What is the properties class in java programming?