Where should u use reflection in ur project? give me one example?

Questions by sadashivarao   answers by sadashivarao

Showing Answers 1 - 4 of 4 Answers

Nanda

  • May 21st, 2006
 

Reflections are basically used to find the details of a class based on the object .

  Was this answer useful?  Yes

devs

  • Nov 24th, 2006
 

Reflection allows an executing Java program to examine or "introspect" upon itself, and manipulate internal properties of the program. For example, it's possible for a Java class to obtain the names of all its members and display them.

Reflection is also used in JavaBeans to set the property values from the request object.

Refer URL : http://java.sun.com/developer/technicalArticles/ALT/Reflection/

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions