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
Why is string builder not thread safe?
What is a singleton class? Give a practical example of its usage.
Which sort is best in java?
Define interface in java?
What are the different access modifiers available in java?
What is an immutable class?
Difference between keyword and identifier.
What is the difference between quicksort & mergesort? When should they be used? What is their running time?
v-model life cycle
How to compare two strings in java program?
Is java call by value?
Why is inheritance used in java?
Is a string literal?
Can one thread block the other thread?
Mention the default values of all the elements of an array defined as an instance variable.