Reflection in Java
Reflection is a runtime API for inspecting and modifying the behavior of methods, classes, and interfaces. The classes required for reflection are provided in the java.lang.reflect package, which is required to understand reflection. Reflection informs us about the class to which an object belongs, as well as the methods of that class that can be […]
August 29, 2022 | Java | No comments