CSC/ECE 517 Fall 2009/wiki2 11 sv

From Expertiza_Wiki
Revision as of 01:05, 9 October 2009 by Vksingh (talk | contribs)
Jump to navigation Jump to search

Design patterns

The idea of design pattern was first introduced by the architect Christopher Alexander in the field of architecture. Later it has been adapted for various other disciplines, including computer science.

A design pattern is a formal way of documenting a solution to a design problem in a particular field of expertise. In software engineering, a design pattern is a solution to a general and commonly occurring problem in software design. A design pattern is not a finished design that can be transformed directly into code. But it is a description or template for how to solve a problem that can be used in many different situations.

e.g.

We can find some common steps or building blocks in any process. Suppose we have to build a home. Then high level of disign 
will be based on how many rooms do we wish to have on each floor. once we are done with this then its just the matter of 
duplicating it for the other floors. This is very common and basic design for construction.

Design patterns in ruby

Almost every design patterns of ruby are borrowed from the GOF book. Following is the list of common pattern used in ruby.

  1. Template
  2. Strategy
  3. Observer
  4. Composite
  5. Iterator
  6. Commands
  7. Adapter
  8. Proxy
  9. Decorator
  10. Singleton
  11. Factory
  12. Builder
  13. Interpreter


Conclusion


See Also

[1]

[2]


[3]

[4]

[5]

[6]



References

[1]

[2]

[3]