import java.lang.*;
public class firstclass
{
public static void main(String[] args)
{ ClassLoader classLoader = firstclass.class.getClassLoader();
System.out.println("class A is called ...");
try {
Class x=classLoader.loadClass("secondclass");
System.out.println("x has been initialized"+x);
//Object y=x.newInstance();
//y.disp();
} catch (Exception e) {
e.printStackTrace();
}
}
}
第二个程序是
public class secondclass
{
public void disp()
{
System.out.println("Clss B is Called")
}
}
当我执行这个程序时,我输出为
Class A called
x has been initializedsecondclass
但是如果尝试拨打x.disp()
或
Object y=x.newInstance();
y.disp();
然后我得到错误,因为找不到对象。如何让x的对象调用disp()
答案 0 :(得分:1)
使用方法disp
的接口可以为两个类加载器提供最方便的方法。 Secondclass可以实现该接口,您可以将该类创建的任何实例转换为接口。使用spi https://docs.oracle.com/javase/tutorial/ext/basics/spi.html
如果您无法使用界面,则需要反思。
Class<?> type = classLoader.loadClass("secondclass");
Object instance = type.getConstructor().newInstance();
type.getMethod("disp").invoke(instance);