Answer Posted / r.jude silvester
A class loader is an object that is responsible for loading
classes. The class ClassLoader is an abstract class. Given
the name of a class, a class loader should attempt to
locate or generate data that constitutes a definition for
the class. A typical strategy is to transform the name into
a file name and then read a "class file" of that name from
a file system.
Applications implement subclasses of ClassLoader in order
to extend the manner in which the Java virtual machine
dynamically loads classes.
Class loaders may typically be used by security managers to
indicate security domains.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is difference between equal and == in java?
What is an enumeration?
What is a type parameter in java?
Can we declare main () method as non static?
What is constructor and its types?
Can we write multiple catch blocks under single try block?
What is the use of object and class classes?
What is split return?
What is set and get methods in java?
Explain some best practices you would apply while using collection in java?
What is variable declaration and definition?
What is the purpose of the System class?
What is collection class in java?
How to display all the prime numbers between 1 and 100
Is a boolean 1 bit?