问题 Remote class loading means load classes which are not presented in the place where they are executed. For example, Java Applet needs to load classes from server to local and execute them locally. Some programs containing URLClassLoader need load classes from network, and execute locally. How about RMI? I found a class called RMIClassLoader? Is it remote class loading? 回答1: A class loader is a way to load classes of any sort: Files, network, memory, even dynamically generated ones. A