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
When should I use a singleton?
Is string is a data type in java?
Can a method be static?
What is map java?
Explain about oops concepts.
Explain the difference between intermediate and terminal operations in java8?
Hi Anyone know the model / questions of the Federal bank sample questions for the post of Specialist Officers - Programmers. Please post if anyone have..
What is the advantage of functional interface in java 8?
What do you understand by copy constructor in java?
What modifiers may be used with a top-level class?
What is google full form?
What is a native method in java programming?
Why do we need array in java?
Write a program to check string is palindrome without using loop?
What is method overloading in JAVA? Why is it not present in C ?