Skip to content

Reflection and introspection

"reflection" 即 "反射"

"introspection" 即 "自省"

Reflection VS introspection

通过 wikipedia Reflection 中的描述:

In computer science, reflection is the ability of a computer program to examine, introspect, and modify its own structure and behavior at runtime.

可知,reflection 包括 introspection,它是一种比 introspection 更加强大的能力: "modify its own structure and behavior at runtime"

stackoverflow What is the difference between introspection and reflection?