Design Pattern: Difference between revisions

m (Text replace - "].</i>"" to "]."")
 
m (Text replacement - "Category:Quality Gold" to "Category:Quality Silver")
 
(38 intermediate revisions by 3 users not shown)
Line 1: Line 1:
'''See:''' [[Design]], [[Pattern]], [[Algorithm Strategy]], [[Ontology Design Pattern]], [[Data Structure Design Pattern]].
A [[Design Pattern]] is a [[solution pattern]] that structures [[design approach]]es and [[implementation method]]s (to solve [[recurring problem]]s and optimize [[design process]]es).
* <B>AKA:</B> [[Solution Pattern]], [[Design Template]], [[Pattern Solution]], [[Reusable Design]].
* <B>Context:</B>
** It can typically solve [[Recurring Problem]] through [[proven solution]] and [[implementation guidance]].
** It can typically structure [[Design Approach]] through [[solution framework]] and [[pattern language]].
** It can typically optimize [[Implementation Process]] through [[best practice]] and [[standard method]].
** It can typically improve [[Design Quality]] through [[pattern application]] and [[solution refinement]].
** It can typically facilitate [[Knowledge Transfer]] through [[pattern documentation]] and [[solution sharing]].
** ...
** It can often enhance [[Design Efficiency]] through [[reusable solution]] and [[pattern replication]].
** It can often support [[Problem Analysis]] through [[pattern recognition]] and [[solution matching]].
** It can often guide [[Design Decision]] through [[solution selection]] and [[pattern adaptation]].
** It can often maintain [[Design Consistency]] through [[standard application]] and [[pattern adherence]].
** ...
** It can range from being a [[Simple Design Pattern]] to being a [[Complex Design Pattern]], depending on its [[solution complexity]].
** It can range from being a [[Domain-Specific Pattern]] to being a [[General Design Pattern]], depending on its [[application scope]].
** It can range from being a [[Concrete Pattern]] to being an [[Abstract Pattern]], depending on its [[implementation level]].
** It can range from being a [[Static Design Pattern]] to being an [[Adaptive Design Pattern]], depending on its [[flexibility degree]].
** It can range from being a [[Technical Pattern]] to being a [[Conceptual Pattern]], depending on its [[abstraction level]].
** ...
** It can have [[Pattern Element]]s through [[solution component]]s.
** It can have [[Implementation Guide]]s through [[usage instruction]]s.
** It can have [[Quality Metric]]s through [[effectiveness measure]]s.
** ...
* <B>Examples:</B>
** [[Software Design Pattern]]s, such as:
*** [[Architectural Pattern]]s, such as:
**** [[System Structure Pattern]]s (for [[system organization]]), such as:
***** [[Layer Pattern]]s for [[system stratification]].
***** [[Microservice Pattern]]s for [[service distribution]].
**** [[Component Pattern]]s (for [[module organization]]), such as:
***** [[Module Pattern]]s for [[code organization]].
***** [[Plugin Pattern]]s for [[extension mechanism]].
** [[Interface Design Pattern]]s, such as:
*** [[Interaction Pattern]]s, such as:
**** [[User Interface Pattern]]s (for [[interface design]]), such as:
***** [[Navigation Pattern]]s for [[user movement]].
***** [[Form Pattern]]s for [[data input]].
**** [[Flow Pattern]]s (for [[interaction sequence]]), such as:
***** [[Wizard Pattern]]s for [[step progression]].
***** [[Dashboard Pattern]]s for [[information display]].
** [[Information Design Pattern]]s, such as:
*** [[Data Organization Pattern]]s, such as:
**** [[Structure Pattern]]s (for [[data arrangement]]), such as:
***** [[Hierarchy Pattern]]s for [[information organization]].
***** [[Network Pattern]]s for [[data relationship]].
**** [[Access Pattern]]s (for [[data retrieval]]), such as:
***** [[Query Pattern]]s for [[data search]].
***** [[Cache Pattern]]s for [[access optimization]].
** [[Process Design Pattern]]s, such as:
*** [[Workflow Pattern]]s, such as:
**** [[Task Organization Pattern]]s (for [[process structure]]), such as:
***** [[Sequential Pattern]]s for [[linear progression]].
***** [[Parallel Pattern]]s for [[concurrent execution]].
**** [[Control Pattern]]s (for [[process management]]), such as:
***** [[Coordination Pattern]]s for [[task synchronization]].
***** [[Exception Pattern]]s for [[error handling]].
** ...
* <B>Counter-Examples:</B>
** [[Ad Hoc Solution]], which lacks [[pattern structure]] and [[reusable element]]s.
** [[Random Approach]], which lacks [[systematic method]] and [[proven effectiveness]].
** [[One-Time Fix]], which lacks [[pattern documentation]] and [[solution generalization]].
** [[Correspondence Pattern]], which describes [[relationship pattern]]s rather than [[design solution]]s.
* <B>See:</B> [[Pattern Language]], [[Solution Framework]], [[Implementation Method]], [[Best Practice]], [[Design Methodology]], [[Problem Solving]], [[Pattern Analysis]], [[Design Process]].
 
----
----
----
----
==References ==


===2009===
== References ==
* http://en.wiktionary.org/wiki/design_pattern
** 1. (computing) A general solution to a variety of similar problems.
* [http://en.wikipedia.org/wiki/Design_pattern_(computer_science) http://en.wikipedia.org/wiki/Design_pattern_(computer_science)]
** In [[software engineering]], a '''design pattern''' is a general reusable solution to a commonly occurring problem in [[software design]]. A design pattern is not a finished design that can be transformed directly into [[code (computer programming)|code]]. It is a description or template for how to solve a problem that can be used in many different situations. [[Object-oriented]] design patterns typically show relationships and [[interaction]]s between [[class (computer science)|class]]es or [[object (computer science)|object]]s, without specifying the final application classes or objects that are involved.
** Design patterns reside in the domain of modules and interconnections. At a higher level there are [[Architectural pattern (computer science)|Architectural patterns]] that are larger in scope, usually describing an overall pattern followed by an entire system.
** Not all software patterns are design patterns. For instance, [[algorithms]] solve [[computation]]al problems rather than software design problems.


===1998===
=== 2014 ===
* ([[1998_TeachingDataStructureDesignPatterns|Gelfand & al, 1998]]) &rArr; Natasha Gelfand, Michael T. Goodrich, and Roberto Tamassia. (1998). "[http://list.cs.brown.edu/cgc/jdsl/papers/patterns.pdf Teaching Data Structure Design Patterns]." In: Proceedings of the Twenty-Ninth [[SIGCSE Technical Symposium on Computer Science Education]]. [http://dx.doi.org/10.1145/273133.274324 doi:10.1145/273133.274324]
* (Wikipedia, 2014) ⇒ http://en.wikipedia.org/wiki/design_pattern Retrieved:2014-4-14.
** A '''design pattern</B> in [[architecture]] and [[computer science]] is a formal way of documenting a solution to a design problem in a particular field of expertise. The idea was introduced by the architect [[Christopher Alexander]] in the field of [[architecture]]<ref name="Alexander, A Pattern Language" >[[#Alexander, A Pattern Language|Alexander, A Pattern Language]] </ref> and has been adapted for various other disciplines, including [[computer science]].<ref name="Gang of Four" >[[#Gang of Four|Gamma ''et al.'']], 1994, Design Patterns (the “[[Design Patterns (book)|Gang of Four]]&rdquo; book) </ref> An organized collection of design patterns that relate to a particular field is called a [[pattern language]].        <P>        The usefulness of speaking of patterns is to have a [[pattern language|common terminology]] for discussing the situations designers already see over and over.
<references/>
 
=== 2012 ===
* http://ontologydesignpatterns.org/wiki/Odp:WhatIsAPattern
** Patterns are used in many areas as "templates" or abstract descriptions encoding best practices of some field. The introduction of patterns in [[computer science]] is generally attributed to inspiration taken from the architecture field and Christopher Alexander. [[Software pattern]]s are probably most well known as [[Design Pattern]]s, as in the [[GoF book]] from 1995. Other patterns include [[data model pattern]]s, [[linguistic pattern]]s, [[knowledge pattern]]s and many more.
 
=== 1998 ===
* ([[1998_TeachingDataStructureDesignPatterns|Gelfand et al., 1998]]) Natasha Gelfand, Michael T. Goodrich, and Roberto Tamassia. ([[1998]]). [http://list.cs.brown.edu/cgc/jdsl/papers/patterns.pdf Teaching Data Structure Design Patterns].In: Proceedings of the Twenty-Ninth [[SIGCSE Technical Symposium on Computer Science Education]]. [http://dx.doi.org/10.1145/273133.274324 doi:10.1145/273133.274324]
 
=== 1979 ===
* ([[1979_TheTimelessWayOfBuilding|Alexander, 1979]]) ⇒ Christopher Alexander. (1979). “[http://books.google.com/books?id=H6CE9hlbO8sC The Timeless Way of Building]." Oxford University Press. ISBN:0195024028


===1979===
* ([[1979_TheTimelessWayOfBuilding|Alexander, 1979]]) &rArr; Christopher Alexander. (1979). "[http://books.google.com/books?id=H6CE9hlbO8sC The Timeless Way of Building]." Oxford University Press. ISBN:0195024028
----
----
__NOTOC__
__NOTOC__
[[Category:Concept]]
[[Category:Design]]
[[Category:Pattern]]
[[Category:Solution]]
[[Category:Quality Silver]]

Latest revision as of 19:30, 3 April 2025

A Design Pattern is a solution pattern that structures design approaches and implementation methods (to solve recurring problems and optimize design processes).



References

2014

  1. Alexander, A Pattern Language
  2. Gamma et al., 1994, Design Patterns (the “Gang of Four” book)

2012

1998

1979