Technical Tag

Reflection

1 related article.

Java Code Auditing Fundamentals: The Java Reflection Mechanism

0x01 What Is Reflection? Reflection is a Java feature absent from C/C++. It lets a running program inspect itself and operate on internal properties of classes and objects. Oracle explains: 'Reflection enables Java code to disc…'