CSC/ECE 517 Fall 2010/ch1 1c NR

From Expertiza_Wiki
Jump to navigation Jump to search

Introduction to Reflection

Reflection was introduced by Brian Cantwell Smith as a framework for language extension.Using reflection, programs can observe and modify their own behavior and structure at runtime.There are two aspects to reflection :

  • 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. Reflection is most commonly used in many dynamically typed languages such as Ruby,Smalltalk, Objective-c and scripting languages like Perl,PHP. Statically typed languages such as Java, ML or Haskell also support reflection.

Reflection as a Language Feature

Reflection as Package

Reflection as Language Feature vs Reflection as Package

Summary

References