我想动态加载实现接口的具体类。输入:具体的类名。
我需要在这个具体的类中调用一个方法,也就是说,我需要设置:
MyInterface myclass = new concreteClassName();
myclass.function();
我怎样才能做到这一点?
答案 0 :(得分:6)
String str = "Test$B"; //your full class name here instead of Test$B
A clazz = null; //change A to be your interface
try {
clazz = (A)Class.forName(str).newInstance(); //change A to be your interface
} catch (Exception e) {
//TODO: handle exceptions
e.printStackTrace();
}
if (clazz != null) {
clazz.foo();
}
答案 1 :(得分:4)
你签了吗
try {
// Load class
Class<?> cls = Class.forName("my.package.ConcreteClass");
// Instantiate object from class using default constructor
my.package.ConcreteClass obj = (my.package.ConcreteClass) cls.newInstance();
// Execute method on it
obj.myMethod();
} catch (Exception e) {
throw new RuntimeException("Could not instantiate class", e);
}
以及Class#forName
和Class#newInstance
的各个javadoc条目?
答案 2 :(得分:0)
您应该实施自己的ClassLoader。