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 a final method be overloaded?
What is the difference between the prefix and postfix forms of the ++ operator?
How big is a 32 bit integer?
Are primitives objects?
what are Hostile Applets?
Enlist diffrent types of inheritance supported by java?
Why we do exception handling in java and how many types of exceptions are there?
What is isa relationship?
What Is Query Throttling in java?
Can we override the static method?
Is {a, n, d} a palindrome? If you are given a random string, is it a palindrome or not?
Explain the importance of finally block in java?
What is a java lambda expression?
What about instanceof operator in java?
How do you sort in ascending order in java?