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
In how many ways we can do synchronization in java?
What is OOP Language?
Explain the difference between string, stringbuffer and stringbuilder in java?
What is singletonlist in java?
What is private public protected in java?
What does java stand for?
What is array in java?
What's the difference between an abstract class and interface in java?
What is a container in a gui?
Explain about complier design(phases)
What are the access modifiers available in java?
Does java have a compiler?
What is a boolean field?
Explain the transient field modifier?
Java.util.regex consists of which classes?