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 |
Which class is the superclass for every class in java programming?
Is it possible to write method inside method
What is constructor
9 Answers Manforce, Tech Mahindra,
Describe method overriding
In Java, what are public static void main string args?
What is covariant return type?
Which eclipse is best for java?
What is the output of the below java program?
What is the difference between Synchronizing mehtod & Synchronizing block?
Is nan false?
What is a ?
Should a main method be compulsorily declared in all java classes?