CSC/ECE 517 Fall 2010/ch4 4g km: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
Line 8: Line 8:
=Example of Metaprogramming=
=Example of Metaprogramming=
There is a classic example of use for metaprogramming that involves some form of writing a program that outputs some set of numbers in order but the trick is that it cannot be done in a loop.  For this example we will ask for a program that outputs the numbers from 1 to 100 without using any looping.  Ideally one would like to write the following:
There is a classic example of use for metaprogramming that involves some form of writing a program that outputs some set of numbers in order but the trick is that it cannot be done in a loop.  For this example we will ask for a program that outputs the numbers from 1 to 100 without using any looping.  Ideally one would like to write the following:
 
  1.upto 100 do |i|
1.upto 100 do |i|
    puts #{i}
  puts #{i}
  end
end
however since a loop is not allowed, you could use the loop to write code that will write the code:
however since a loop is not allowed, you could use the loop to write code that will write the code:
1.upto 100 do |i|
  1.upto 100 do |i|
  puts "puts #{i}"
    puts "puts #{i}"
end
  end


=Dynamic Programming Languages=
=Dynamic Programming Languages=

Revision as of 13:09, 17 October 2010

Metaprogramming in dynamically typed languages


Introduction

In the previous article for which the link does not exist yet, we learn that command patterns in static and dynamic languages provide separation of objects that request actions from the objects that ultimately perform actions. This is dome by encapsulating the request for an action on a specific object. These command patterns are executed at runtime and simply hide the fact that another program is being called. Another technique of encapsulating behavior is for the program to have changes initiated at compile time. This type of design requires that the program not only can call another piece of code at runtime but it can build these calls at compile time via metaprogramming. Metaprogramming is the ability for a computer program to manipulate itself or other programs at the time of compilation as opposed to performing this manipulations at runtime. This tends to allow for greater flexibility for a program to handle new situations. In this article we take a closer look at metaprogramming in dynamically typed languages.

Example of Metaprogramming

There is a classic example of use for metaprogramming that involves some form of writing a program that outputs some set of numbers in order but the trick is that it cannot be done in a loop. For this example we will ask for a program that outputs the numbers from 1 to 100 without using any looping. Ideally one would like to write the following:

 1.upto 100 do |i|
   puts #{i}
 end

however since a loop is not allowed, you could use the loop to write code that will write the code:

 1.upto 100 do |i|
   puts "puts #{i}"
 end

Dynamic Programming Languages

http://en.wikipedia.org/wiki/Dynamic_programming_language

Conclusion

What’s Next?

In the next article for which the link does not exist yet, we will look at static-analysis tools for Ruby.

References

  1. Metaprogramming on Wikipedia
  2. Dynamic Programming Languages on Wikipedia
  3. Command Pattern on Wikipedia