如何在Java中实现反射?

Java 7语言规范很早就说:

“this specification does not describe reflection in any detail.”

我只是想知道:如何用Java实现Reflection?

我不是在问它是如何使用的,我知道可能没有具体的答案我正在寻找,但任何信息都会非常感激.

我在Stackoverflow上找到了这个,关于C#:How is reflection implemented in C#?的类似问题

最佳答案 任何Reflection活动的主要入口点是Class类.从中可以获得Method,Field,Class,Constructor和Annotation实例.

如果查看源代码,您会注意到要检索上述任何内容,Java必须进行native调用.例如,

private native Field[]       getDeclaredFields0(boolean publicOnly);
private native Method[]      getDeclaredMethods0(boolean publicOnly);
private native Constructor<T>[] getDeclaredConstructors0(boolean publicOnly);
private native Class<?>[]   getDeclaredClasses0();
private native byte[] getRawAnnotations(); // get converted to Annotation instances later

实现在本机C代码(和/或C)中完成.每个JDK可能会有所不同,但您可以查找源代码(如果可用)并且您有耐心.有关OpenJDK源代码的详细信息,请参见in this question.

点赞