What is meant by class loader and how many types are there?
Answer Posted / lucky
Class Loader: Class loder is mainly responsible for loading java class into JVM.
There are 3 types of java class loaders:
1)Bootstrap class loader :loads jdk jars.
2)Extensions class loader : loads java classes from the path
"JAVA_HOME/jre/lib/ext/
3)System class loader : loads the java classes from system class path , class path has been set by the CLASSPATH environment variable.
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Is set ordered?
What exactly is methodology?
Explain why wait(), notify() and notifyall() methods are in object class rather than in thread class?
what is mena by object block any what is the use of that
How many arguments can a method have java?
What is the benefit of inner classes in java?
What are invisible components?.
I want to persist data of objects for later use. What is the best approach to do so?
Is class is a data type?
Define an abstract class with reference to java.
What are the basics of core java?
How do I get the | symbol on my keyboard?
How do you read a char in java?
What is the covariant return type?
How to sort an array from smallest to largest java?