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
Explain what access modifiers can be used for variables?
what are the methods in object?
Why main method is static in java?
Can list have duplicates in java?
What do you understand by garbage collection in Java? Can it be forced to run?
What is the difference between pass by reference and pass by pointer?
What is the static import?
Discuss 2D arrays.
What is meant by oops concept in java?
What does index mean in java?
How to pass arraylist to stored procedure in java?
A non-static inner class may have object instances that are associated with instances of the class’s outer class. A static inner class does not have any object instances.
What is module in oop?
Difference between string, stringbuffer and stringbuilder?
Explain about arraylist?