Does a definitive list of design patterns exist? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T22:21:15Z http://stackoverflow.com/feeds/question/136337 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/136337/does-a-definitive-list-of-design-patterns-exist 6 Does a definitive list of design patterns exist? David Arno 2008-09-25T21:38:03Z 2008-09-26T23:31:25Z <p>Where did the idea of design patterns come from, who decided what is and isn't a pattern and gave them their names? Is there an official organisation that defines them, or do they exist through some community consensus?</p> http://stackoverflow.com/questions/136337/does-a-definitive-list-of-design-patterns-exist/136351#136351 5 Answer by Darren Kopp for Does a definitive list of design patterns exist? Darren Kopp 2008-09-25T21:40:10Z 2008-09-25T21:40:10Z <p>Wikipedia has a good list. <a href="http://en.wikipedia.org/wiki/Design_pattern_(computer_science)" rel="nofollow">http://en.wikipedia.org/wiki/Design_pattern_(computer_science)</a> </p> <p>Most are by community consensus (that community being of people who have read design patterns or code complete :/)</p> http://stackoverflow.com/questions/136337/does-a-definitive-list-of-design-patterns-exist/136364#136364 3 Answer by Pablo Fernandez for Does a definitive list of design patterns exist? Pablo Fernandez 2008-09-25T21:42:22Z 2008-09-25T21:42:22Z <p>There's no definitive list. Patterns are discovered, not invented, so there's no organization that can say "this is a pattern" and "this is not a pattern". Even if there were one, it wouldn't be useful for anybody.</p> <p>Despite that, the "famous" patterns are the ones described in Design Patterns, or the GOF book.</p> http://stackoverflow.com/questions/136337/does-a-definitive-list-of-design-patterns-exist/136367#136367 13 Answer by pix0r for Does a definitive list of design patterns exist? pix0r 2008-09-25T21:42:54Z 2008-09-25T21:42:54Z <p>Most people would point to the <a href="http://en.wikipedia.org/wiki/Gang_of_Four_(software)" rel="nofollow">"Gang of Four"</a> (Erich Gamma, Richard Helm, Ralph Johnson, and John Vlissides) who wrote the book <em>Design Patterns: Elements of Reusable Object-Oriented Software</em>. There is no real definitive list as useful design patterns are certainly being discovered all the time.</p> http://stackoverflow.com/questions/136337/does-a-definitive-list-of-design-patterns-exist/136380#136380 3 Answer by Kris Kumler for Does a definitive list of design patterns exist? Kris Kumler 2008-09-25T21:44:35Z 2008-09-25T21:44:35Z <p>It can also be useful to recognize <a href="http://en.wikipedia.org/wiki/Anti-pattern" rel="nofollow">anti-patterns</a>.</p> http://stackoverflow.com/questions/136337/does-a-definitive-list-of-design-patterns-exist/136381#136381 -1 Answer by danatel for Does a definitive list of design patterns exist? danatel 2008-09-25T21:45:09Z 2008-09-25T21:45:09Z <p>There is a canonical book: Gamma, Helm, Johnson, Vlissides: "Dessign Patterns - Elements of Reusable Object-Oriented Software" which started it all. It contains 23 patterns.</p> http://stackoverflow.com/questions/136337/does-a-definitive-list-of-design-patterns-exist/136385#136385 10 Answer by Ryan for Does a definitive list of design patterns exist? Ryan 2008-09-25T21:45:26Z 2008-09-25T21:45:26Z <p>I think there's a basic "life cycle of a design pattern"</p> <ol> <li>Author writes about design pattern in a book.</li> <li>Book becomes well read, possibly best seller</li> <li>Design pattern enters public conscious, gains mindshare.</li> <li>Design pattern gets used. It works well. design pattern gets more mindshare</li> <li>Design pattern becomes panacea, gets over-used. </li> <li>Different Author writes "Design Pattern Considered Harmful"</li> <li>Design pattern becomes <a href="http://en.wikipedia.org/wiki/Anti-pattern" rel="nofollow">Anti Pattern</a></li> <li>Different Author becomes famous, writes book full of new design patterns...</li> </ol> http://stackoverflow.com/questions/136337/does-a-definitive-list-of-design-patterns-exist/136387#136387 1 Answer by Mike Woodhouse for Does a definitive list of design patterns exist? Mike Woodhouse 2008-09-25T21:45:33Z 2008-09-25T21:45:33Z <p>There is no definitive list - for there to be one would most likely require some authority to declare whether a pattern is a pattern or just a ... something else.</p> <p>Some patterns make sense only in a subset of languages - the canonical <a href="http://rads.stackoverflow.com/amzn/click/0201633612" rel="nofollow">GOF book</a> concentrates on Java (or is it C++? The book's on my desk at the office) and some of the patterns described aren't very relevant in, for example, Ruby or VB6. And vice versa of course.</p> http://stackoverflow.com/questions/136337/does-a-definitive-list-of-design-patterns-exist/136392#136392 2 Answer by Brannon for Does a definitive list of design patterns exist? Brannon 2008-09-25T21:47:47Z 2008-09-25T21:47:47Z <p>This is a good list of patterns (from the <em>Patterns of Enterprise Application Architecture</em> book):</p> <p><a href="http://martinfowler.com/eaaCatalog/" rel="nofollow">http://martinfowler.com/eaaCatalog/</a></p> http://stackoverflow.com/questions/136337/does-a-definitive-list-of-design-patterns-exist/136400#136400 1 Answer by Oscar Reyes for Does a definitive list of design patterns exist? Oscar Reyes 2008-09-25T21:49:47Z 2008-09-25T21:49:47Z <p>Short answer: No.</p> <p>Long answer: Since if someone designs something, and it tends to be reused by others a new "design pattern" will be just created ( or discovered?? ) </p> <p>Actually the number of design patterns in existing applications might be enormous, but none has classified them yet.</p> <p>I would add the the previous links these two:</p> <p><a href="http://martinfowler.com/eaaCatalog/" rel="nofollow">http://martinfowler.com/eaaCatalog/</a></p> <p><a href="http://c2.com/ppr/" rel="nofollow">http://c2.com/ppr/</a></p> http://stackoverflow.com/questions/136337/does-a-definitive-list-of-design-patterns-exist/136460#136460 0 Answer by Charles Graham for Does a definitive list of design patterns exist? Charles Graham 2008-09-25T22:00:42Z 2008-09-25T22:00:42Z <p>I would say that the Union of the list in the Gang of Four book and Fowler's Patterns of Enterprise Arhitecture will give you 99% of what you would ever need to know.</p> http://stackoverflow.com/questions/136337/does-a-definitive-list-of-design-patterns-exist/136481#136481 3 Answer by SaaS Developer for Does a definitive list of design patterns exist? SaaS Developer 2008-09-25T22:03:40Z 2008-09-25T22:03:40Z <p>The idea of Design Patterns was coined by Christopher Alexander, while writing about architectural patterns within buildings and towns. Similarly, patterns have emerged as engineers have gained more experience with object oriented design methodologies.</p> <p>There is not one official consortium that defines what is a pattern and what is not a pattern. However, patterns typically have a long lifecycle before they are generally accepted. The development community is beginning to participate in things like PLOP (Pattern Languages of Programs) and their yearly conference: <a href="http://hillside.net/plop/2008/index.php" rel="nofollow">2008 Conference</a>, which focus on pattern authors and enthusiasts to discuss the subject of patterns and new pattern development.</p> http://stackoverflow.com/questions/136337/does-a-definitive-list-of-design-patterns-exist/142485#142485 0 Answer by S.Lott for Does a definitive list of design patterns exist? S.Lott 2008-09-26T23:31:25Z 2008-09-26T23:31:25Z <p>There can't be a definitive list. Ever.</p> <p>If you see some solutions to a problem that -- to you -- have a pattern that can be articulated, you've discovered a design pattern. You can always continue doing this.</p> <p>Every clever, new solution could be the genesis for a similar solution which shares a common pattern. Patterns are something <em>you</em> use to summarize and capture a cool solution to a problem. </p> <p>The human brain can find patterns in almost <em>anything</em>. It's a thing we do without thinking about it. </p>