JAVA CORE

Class loaders

In Java, every class needs to be loaded before it can be used. The class loader (which is part of JVM) is responsible for finding and loading the java classes. A class loading is made once, at its first use. Classes are uniquely identified by their fully qualified name and by the class loader which loaded them.

By Laura, January 2014