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
What makes a function well defined?
What is fundamental datatype?
Which command from the jdk compiles a java program?
What about main() method in java ?
What is exception hierarchy in java?
What do you mean by inner class in java? Explain
Can we sort hashset in java?
What is the difference between the paint() and repaint() methods?
Can an integer be null java?
Which variables are stored in stack?
what is the role of xml in core java?? and how we can use it?? can somebody give a sample program with explanation and from where i can read more about xml?????
What is the meaning of variable in research?
Why super is first line in java?
What are the three best choices for a development environment?
What is private public protected in java?