假设我在运行时通过ClassLoader
加载类:
Class<MyInterface> clazz = (Class<MyInterface>)getClass().getClassLoader().loadClass("ImplementerOfMyInterface");
我可以通过
创建新实例MyInterface myInt = clazz.newInstance();
但是当我需要通过其名称来实现单例的实例MyInterface
而不是创建新的实例时,应该做什么?
答案 0 :(得分:3)
您可以调用静态“getInstance”方法(或您使用的任何单例getter方法名称),而不是调用newInstance
。
例如:
public class ReflectTest {
public static void main(String[] args) throws Exception {
Class clazz = Class.forName("ReflectTest");
Method m = clazz.getDeclaredMethod("getInstance", null);
Object o = m.invoke(null, null);
System.out.println(o == INSTANCE);
}
public static ReflectTest getInstance() {
return INSTANCE;
}
private static final ReflectTest INSTANCE = new ReflectTest();
private ReflectTest() {
}
}