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
How do I compare two strings in word in java?
What design pattern you have used in your project? I answered Factory pattern, how it is implemented? What are its advantage? Do know about Abstract Factory?
What are byte codes?
Is java hashset ordered?
What is instance example?
What is the meaning of course?
Suppose if we have variable ' I ' in run method, if I can create one or more thread each thread will occupy a separate copy or same variable will be shared?
Explain the concept of proper inheritance?
Is space a character in java?
What is the difference between procedural and object-oriented programs?
What is difference between protected and private?
What are the practical benefits, if any, of importing a specific class rather than an entire package (e.g. Import java.net.* Versus import java.net.socket)?
Can an interface implement another interface?
What is object cloning in Java?
Why generics are used in java?