Java 7语言规范很早就说:
"此规范未详细描述反射。"
我只是想知道:如何用Java实现Reflection?
我不会问它是如何使用的,而且我知道我可能没有找到具体的答案,但任何信息都会非常感激。
我在Stackoverflow上找到了这个,关于C#的类似问题:How is reflection implemented in C#?
答案 0 :(得分:2)
任何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。