| advertise add site services publishers database health videos | ![]() | about toolbar stats live show health store more stuff JOIN/LOGIN |
Computer Vision Syndrome | Computer Vision Therapy Programs | Computer... hollywoodvision.com | Directory - Computers > Computer Science n1teeth.com | Basic Sciences in Oncology: cancerinstitute.org.au |
In computer science, reflection is the process by which a computer program can observe and modify its own structure and behavior. The programming paradigm driven by reflection is called reflective programming. It is a particular kind of metaprogramming. In many computer architectures, program instructions are stored as data - hence the distinction between instruction and data is merely a matter of how the information is treated by the computer and programming language. Normally, instructions are executed and data is processed; however, in some languages, programs can also treat instructions as data and therefore make reflective modifications. Reflection is most commonly used in high-level virtual machine programming languages like Smalltalk and scripting languages, and less commonly used in manifestly typed and/or statically typed programming languages such as Java and C.
[edit] Historical backgroundBrian Cantwell Smith's 1982 doctoral dissertation[1][2] introduced the notion of computational reflection in programming languages, and the notion of the meta-circular interpreter as a component of 3-Lisp. [edit] Reflection-oriented programmingReflection-oriented programming, or reflective programming, is a functional extension to the object-oriented programming paradigm. Reflection-oriented programming includes self-examination, self-modification, and self-replication. However, the emphasis of the reflection-oriented paradigm is dynamic program modification, which can be determined and executed at runtime. Some imperative approaches, such as procedural and object-oriented programming paradigms, specify that there is an exact predetermined sequence of operations with which to process data. The reflection-oriented programming paradigm, however, adds that program instructions can be modified dynamically at runtime and invoked in their modified state. That is, the program architecture itself can be decided at runtime based upon the data, services, and specific operations that are applicable at runtime. Programming sequences can be classified in one of two ways, atomic or compound. Atomic operations are those that can be viewed as completing in a single, logical step, such as the addition of two numbers. Compound operations are those that require a series of multiple atomic operations. A compound statement, in classic procedural or object-oriented programming, can lose its structure once it is compiled. The reflective programming paradigm introduces the concept of meta-information, which keeps knowledge of program structure. Meta-information stores information such as the name of the contained methods, the name of the class, the name of parent classes, and/or what the compound statement is supposed to do. Using this stored information, as an object is consumed (processed), it can be reflected upon to find out the operations that it supports. The operation that issues in the required state via the desired state transition can be chosen at run-time without hard-coding it. [edit] UsesReflection can be used for observing and/or modifying program execution at runtime. A reflection-oriented program component can monitor the execution of an enclosure of code and can modify itself according to a desired goal related to that enclosure. This is typically accomplished by dynamically assigning program code at runtime. Reflection can also be used to adapt a given program to different situations dynamically. For example, consider an application that uses two different classes Reflection is also a key strategy for metaprogramming. [edit] ImplementationA language supporting reflection provides a number of features available at runtime that would otherwise be very obscure or impossible to accomplish in a lower-level language. Some of these features are the abilities to:
These features can be implemented in different ways. In MOO, reflection forms a natural part of everyday programming idiom. When verbs (methods) are called, various variables such as verb (the name of the verb being called) and this (the object on which the verb is called) are populated to give the context of the call. Security is typically managed by accessing the caller stack programmatically: Since callers() is a list of the methods by which the current verb was eventually called, performing tests on callers()[1] (the command invoked by the original user) allows the verb to protect itself against unauthorised use. Compiled languages rely on their runtime system to provide information about the source code. A compiled Objective-C executable, for example, records the names of all methods in a block of the executable, providing a table to correspond these with the underlying methods (or selectors for these methods) compiled into the program. In a compiled language that supports runtime creation of functions, such as Common Lisp, the runtime environment must include a compiler or an interpreter. Reflection can be implemented for languages not having built-in reflection facilities by using a program transformation system to define automated source code changes. [edit] Examples
[edit] C#Here is an example in C#: //Without reflection Foo foo = new Foo(); foo.Hello(); //With reflection Type t = Type.GetType("FooNamespace.Foo"); object foo = Activator.CreateInstance(t); t.InvokeMember("Hello", BindingFlags.InvokeMethod, null, foo, null); [edit] Common LispHere is an equivalent example in Common Lisp: ;;Without reflection (+ 1 2) ;;evaluates to '3' ;;With reflection (defvar one-plus-two '(+ 1 2)) ;;the single quote "'" has a special meaning it indicates 'data mode' ;;therefore "(+ 1 2)" is assigned to the variable as is (quoted) , rather than being evaluated to '3' (eval one-plus-two) ;;the standard lisp function "eval" is evaluted with variable "one-plus-two" as it's sole argument ;;which in turn evaluates the previously quoted s-expression to '3' ;;final note: it is also possible to manipulate the variable "one-plus-two" during runtime ;;by using "setf" e.x (setf (first one-plus-two) '*) ;;this would change the s-expression to "(* 1 2)" , invoking "eval" afterwards will return '2'. ;;the end result would be a reflective self-manipulating common lisp code. [edit] ECMAScriptHere is an equivalent example in ECMAScript, and therefore works in JavaScript and ActionScript: // Without reflection new Foo().hello() // With reflection // assuming that Foo resides in this new this['Foo']()['hello']() // or without assumption new (eval('Foo'))()['hello']() [edit] JavaThe following is an example in Java using the Java package // Without reflection Foo foo = new Foo(); foo.hello(); // With reflection Class cls = Class.forName("Foo"); Object foo = cls.newInstance(); Method method = cls.getMethod("hello", null); method.invoke(foo, null); [edit] PerlHere is an equivalent example in Perl: # without reflection my $foo = Foo->new(); $foo->hello(); # with reflection my $class = "Foo"; my $method = "hello"; my $object = $class->new(); $object->$method(); [edit] PHPHere is an equivalent example in PHP: // without reflection $Foo = new Foo(); $Foo->hello(); // with reflection $f = new ReflectionClass("Foo"); $m = $f->GetMethod("hello"); $m->invoke( $f->newInstance() ); [edit] PythonHere is an equivalent example from the Python shell: >>> # Class definition >>> class Foo(object): ... def hello(self): ... print "Hi" ... >>> # Instantiation >>> foo = Foo() >>> # Normal call >>> foo.hello() Hi >>> # Instantiation with reflection >>> foo_class = globals()['Foo'] >>> # Calling constructor >>> foo = foo_class() >>> # Call foo's hello() method using a string for the function name >>> method = getattr(foo, 'hello') >>> method() Hi >>> # if class Foo defined in another module >>> import models >>> foo_class = getattr(models, 'Foo') [edit] RubyHere is an equivalent example in Ruby: # without reflection Foo.new.hello # with reflection Object.const_get(:Foo).new.send(:hello) [edit] SmalltalkHere is an equivalent example in Smalltalk: "Without reflection" Foo new hello "With reflection" (Compiler evaluate: 'Foo') new perform: #hello [edit] IoHere is an equivalent example in Io: Foo := Object clone do( hello := method( "Hello" println ) ) #Without reflection Foo hello #With reflection getSlot("Foo") getSlot("hello") call [edit] See also
[edit] ReferencesNotes
Documents
[edit] Further reading
[edit] External links
| |||||||||||
| ↑ top of page ↑ | about thumbshots |