|
|
Start of Tutorial |
Search
Feedback Form |
Trail: The Reflection API
by Dale Green
The reflection API represents, or reflects, the classes, interfaces, and objects in the current Java Virtual Machine. You'll want to use the reflection API if you are writing development tools such as debuggers, class browsers, and GUI builders. With the reflection API you can:
Your feedback is important to us! Please send your comments and suggestions to us using the feedback page.
- Determine the class of an object.
- Get information about a class's modifiers, fields, methods, constructors, and superclasses.
- Find out what constants and method declarations belong to an interface.
- Create an instance of a class whose name is not known until runtime.
- Get and set the value of an object's field, even if the field name is unknown to your program until runtime.
- Invoke a method on an object, even if the method is not known until runtime.
- Create a new array, whose size and component type are not known until runtime, and then modify the array's components.
Method objects
of the reflection API in the same way.
Resist the temptation!
Your program will be easier to debug and maintain if you
don't use Method objects.
Instead,
you should define an interface, and then implement it
in the classes that perform the needed
action.
Other trails use the term "member variable"
instead of "field."
The two terms are synonymous.
Because the Field class is part of
the reflection API, this trail uses the term "field."
This trail uses a task-oriented approach to the reflection API. Each lesson includes a set of related tasks, and every task is explained, step by step, with a sample program. The lessons are as follows:
Examining Classes
explains how to determine the class of an object,
and how to get information about classes and interfaces.
Manipulating Objects
shows you how to
instantiate classes,
get or set field values,
and invoke methods.
With the reflection API, you can
perform these tasks even if the names
of the classes, fields, and methods
are unknown until runtime.
Working with Arrays
describes the APIs used to create and to modify arrays
whose names are not known until runtime.
Summary of Classes
lists the classes that comprise the reflection API, and provides links
to the apppropriate API documentation.
|
|
Start of Tutorial |
Search
Feedback Form |