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 update method called?
What are the differences between path and classpath variables?
Can we override tostring method in java?
What are examples of modifiers?
What is a platform?
What is jagged array in java?
What are exception handling keywords in java?
What is the difference between math floor and math round?
What is regex java?
How do you break a loop?
Is arraylist sorted in java?
What is the program compilation process?
Tell me how many ways are there to initialise an integer with a constant.
What is the difference between the Reader/Writer class hierarchy and the InputStream/OutputStream class hierarchy?
What is the relationship between class and object?