CSC/ECE 517 Fall 2010/ch1 1c NR: Difference between revisions
Line 4: | Line 4: | ||
*Introspection - the ability for a program to observe and reason about its own state. | *Introspection - the ability for a program to observe and reason about its own state. | ||
*Intercession - the ability for a program to modify its own execution state or alter its own interpretation or meaning. | *Intercession - the ability for a program to modify its own execution state or alter its own interpretation or meaning. | ||
What is crucial here is that a given program can behave not only as a function, but also as a data structure that can be examined and manipulated to change its behavior. These properties lead to an easily extensible language since the structures used by the language implementation are accessible to the programmer. The programmer can now define programming constructs that would otherwise have been either impossible or extremely difficult to define. These properties have led to the adoption of reflection as a primary means for language extensibility. | |||
=Reflection as a Language Feature= | =Reflection as a Language Feature= |
Revision as of 20:50, 7 September 2010
Introduction to Reflection
Reflection was introduced by Brian Cantwell Smith as a framework for language extension. Reflection is the ability of a computer program to manipulate aspects of a program from within itself at runtime. There are two aspects of such manipulation: introspection and intercession.
- Introspection - the ability for a program to observe and reason about its own state.
- Intercession - the ability for a program to modify its own execution state or alter its own interpretation or meaning.
What is crucial here is that a given program can behave not only as a function, but also as a data structure that can be examined and manipulated to change its behavior. These properties lead to an easily extensible language since the structures used by the language implementation are accessible to the programmer. The programmer can now define programming constructs that would otherwise have been either impossible or extremely difficult to define. These properties have led to the adoption of reflection as a primary means for language extensibility.