Explain the significance of class loaders in Bootstrap?

devquora
devquora

Posted On: Feb 22, 2018

 

In order to load the Java Classes into a virtual environment, Classloader are used. A class loader will load key classes such as java.lang.object and several other codes into the memory. Usually, these classes are loaded only if a demand occurs. Since Java Runtime Environment includes loaders, they need not know about file and file systems. Also, the loaders are responsible for converting the named class into an equivalent binary form.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Core Java Interview Questions

    What is the difference between JDK, JRE, and JVM?

    It is important to understand the difference between JDK, JRE, and JVM in Java.JVM (Java Virtual Machine) Java..

    Core Java Interview Questions

    What are the various access specifiers in Java?

    Access specifiers in java are the keywords which define the access scope of the function. It can be used before a class..

    Core Java Interview Questions

    What do you understand by looping in java? Explain the different types of loops.

    If we want to execute a statement or a block of statements repeatedly in java, then loops are used. And such process is..