Here you can find the source of loadClass(String className, ClassLoader classLoader)
private static Class<?> loadClass(String className, ClassLoader classLoader) throws ClassNotFoundException
//package com.java2s; //License from project: Apache License public class Main { private static Class<?> loadClass(String className, ClassLoader classLoader) throws ClassNotFoundException { return Class.forName(className, true, classLoader); }//from w w w. j a v a 2 s . c o m }