package chapter1801;
class Tester{
static{
System.out.println("Tester类的静态初始化块!");
}
}
public class ClassLoaderTest {
public static void main(String[] args) throws ClassNotFoundException {
ClassLoader cl=ClassLoader.getSystemClassLoader();
cl.loadClass("chapter1801.Tester");
System.out.println("loading Tester class!");
Class.forName("chapter1801.Tester");
}
}
转载请注明原文地址: https://ju.6miu.com/read-1308410.html