Java中的反射api

这个问题在这里已经有了答案:

  • 什么是反思,为什么它有用? 20个答案

  • what is reflection in java?
    

    反射使得可以在运行时检查类,接口,字段和方法,而无需在编译时知道类名,方法等。 也可以实例化新对象,调用方法并使用反射来获取/设置字段值。

    In which situation i need to use reflection? 
    

    在运行时将对象映射到数据库中的表。

    Real time scenarios and examples for the need of using reflection? 
    

    好的实时示例是MyEclipse IDE。 如果您将鼠标指针放在任何类名上,它将反映类名和一些信息。 这也是使用反射API的一种反射类型。

    通过这个Reflction API链接,你可以得到更多的信息。

    链接地址: http://www.djcxy.com/p/47617.html

    上一篇: Reflection api in Java

    下一篇: What are uses for reflection? (e.g the Java Reflection API)