I have seen several places that "Class.getClassLoader() returns the ClassLoader used to load that particular class", and therefore, I am stumped by the results of the following example:
package test; import java.lang.*; public class ClassLoaders { public static void main(String[] args) throws java.lang.ClassNotFoundException{ MyClassLoader mcl = new MyClassLoader(); Class clazz = mcl.loadClass("test.FooBar"); System.out.println(clazz.getClassLoader() == mcl); // prints false System.out.println(clazz.getClassLoader()); // prints e.g. sun.misc.Launcher$AppClassLoader@553f5d07 } } class FooBar { } class MyClassLoader extends ClassLoader { } Shouldn't the statement clazz.getClassLoader() == mcl return true? Can someone explain what I am missing here?
Thanks.