I found the following code @ https://stackoverflow.com/questions/37628/what-is-reflection-and-why-is-it-useful/37632#37632

The ability to inspect the code in the system and see object types is not reflection, but rather Type Introspection. Reflection is then the ability to make modifications at runtime by making use of introspection. The distinction is necessary here as some languages support introspection, but do not support reflection. One such example is C++.

Can anyone please elaborate on this using Java coding examples.

Thank you

More Zubair Jeelani's questions See All
Similar questions and discussions