我的场景:
一个类将使用 ClassLoader 从许多不同的类中加载。
如何从加载另一个类的类中获取方法和变量 - 从另一个类?即从一个我不知道其名称的类中获取方法和变量。
例子:
public class MainClass {
public static String str = "hey";
public static void main(String[] args) {
//load the OtherClass class, create an instance of it, and invoke its run method
}
}
public class OtherClass {
public void run() {
//get all variables of the class that instantialized the class
}
}
搜索了stackoverflow但没有运气:/
任何帮助表示赞赏:)。
麦克风。