What is reflection and why is it useful?

前端 未结 21 2804
春和景丽
春和景丽 2020-11-21 04:36

What is reflection, and why is it useful?

I\'m particularly interested in Java, but I assume the principles are the same in any language.

21条回答
  •  走了就别回头了
    2020-11-21 04:49

    Reflection has many uses. The one I am more familiar with, is to be able to create code on the fly.

    IE: dynamic classes, functions, constructors - based on any data (xml/array/sql results/hardcoded/etc..)

提交回复
热议问题