How to study design patterns? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T20:21:19Zhttp://stackoverflow.com/feeds/question/315000http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/315000/how-to-study-design-patterns14How to study design patterns?Alien012008-11-24T18:36:43Z2008-12-04T02:18:05Z
<p>I have read around 4-5 books on design patterns, but still I dont feel I have come closer to intermediate level in design patterns?</p>
<p>How should I go studying design patterns?</p>
<p>Is there any best book for design pattern?</p>
<p>I know this will come only with experience but there must be some way to master these?</p>
http://stackoverflow.com/questions/315000/how-to-study-design-patterns/315025#31502516Answer by joseph.ferris for How to study design patterns?joseph.ferris2008-11-24T18:41:45Z2008-11-24T18:41:45Z<p>The best way is to begin coding with them. Design patterns are a great concept that are hard to apply from just reading about them. Take some sample implementations that you find online and build up around them.</p>
<p>A great resource is the <a href="http://www.dofactory.com/Patterns/Patterns.aspx" rel="nofollow">Data & Object Factory</a> page. They go over the patterns, and give you both conceptual and real world examples. Their reference material is great, too.</p>
http://stackoverflow.com/questions/315000/how-to-study-design-patterns/315036#3150363Answer by Rohit Kumbhar for How to study design patterns?Rohit Kumbhar2008-11-24T18:44:26Z2008-11-24T18:44:26Z<p>Have you tried the Gang of Four book?</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0201633612" rel="nofollow" title="Design Patterns: Elements of Reusable Object-Oriented Software">Design Patterns: Elements of Reusable Object-Oriented Software</a></p>
http://stackoverflow.com/questions/315000/how-to-study-design-patterns/315039#31503913Answer by Darren C for How to study design patterns?Darren C2008-11-24T18:45:56Z2008-11-24T19:31:08Z<p>I read three books and still did not understand patterns very well until I read <a href="http://oreilly.com/catalog/9780596007126/" rel="nofollow">Head First Design Patterns</a> by OReilly. This book opened my eyes and really explained well.</p>
<p><img src="http://oreilly.com/catalog/covers/9780596007126_cat.gif" alt="alt text" /></p>
http://stackoverflow.com/questions/315000/how-to-study-design-patterns/315048#3150481Answer by JB King for How to study design patterns?JB King2008-11-24T18:48:59Z2008-11-24T18:48:59Z<p>My suggestion would be a combination of implement a few of them and analyze some implementations of them. For example, within .Net, there are uses of adapter patterns if you look at Data Adapters, as well as a few others if one does a little digging into the framework.</p>
http://stackoverflow.com/questions/315000/how-to-study-design-patterns/315054#3150543Answer by utku_karatas for How to study design patterns?utku_karatas2008-11-24T18:51:03Z2008-11-24T19:00:49Z<p>Practice practice practice. I think 4 to 5 books is even an excessive reading exercise without some good amount of practising. Best way to do this, I believe, is to start <strong>refactoring your current projects</strong> using the patterns. Or if you don't have any projects you're actively working on then <strong>just do it your own way and then try refactoring to patterns</strong>. </p>
<p>You cannot appreciate them fully if you haven't suffered through the problems they solve. And please keep in mind that they are not silver bullets - you don't need to memorize them and push it hard to apply on the fly. My two cents..</p>
http://stackoverflow.com/questions/315000/how-to-study-design-patterns/315062#3150621Answer by tim for How to study design patterns?tim2008-11-24T18:54:31Z2008-11-24T18:54:31Z<p>I have found that it is a bit hard to comprehend or understand the benefits of some patterns until one understands the problems they solve and the other (worse) ways the problems have been implemented. </p>
<p>Other than the GOF and POSA books I have not really read any so I can't give you other recommendations. Really you just have to have an understanding of the problems domains and I think that many less experienced developers may not be able to appreciate the benefits of patterns. This is no slight against them. It is a lot easier to embrace, understand and appreciate good solutions when one has to struggle with poor alternatives first. </p>
<p>Good luck</p>
http://stackoverflow.com/questions/315000/how-to-study-design-patterns/315063#3150631Answer by Jason Slocomb for How to study design patterns?Jason Slocomb2008-11-24T18:54:54Z2008-11-24T18:54:54Z<p>I don't know about best book, but the purists might say <a href="http://en.wikipedia.org/wiki/Design_Patterns" rel="nofollow">Design Patterns: Elements of Reusable Object-Oriented Software</a></p>
<p>As far as my personal favorite, I like <a href="http://oreilly.com/catalog/9780596007126/" rel="nofollow">Head First Design Patterns</a> published by O'Reilly. It's written in a conversational voice that appeals to me. When I read it, I reviewed my source code at the same time to see if it applied to what I was reading. If it did, I refactored. This is how I learned Chain of Responsibility. </p>
<p>Practice - Practice - Practice.</p>
http://stackoverflow.com/questions/315000/how-to-study-design-patterns/315066#3150663Answer by McWafflestix for How to study design patterns?McWafflestix2008-11-24T18:55:02Z2008-11-24T18:55:02Z<p>Practice, practice, practice.</p>
<p>You can read about playing the cello for years, and still not be able to put a bow to instrument and make anything that sounds like music.</p>
<p>Design patterns are best recognized as a high-level issue; one that is only relevant if you have the experience necessary to recognize them as useful. It's good that you recognize that they're useful, but unless you've seen situations where they would apply, or have applied, it's almost impossible to understand their true value.</p>
<p>Where they become useful is when you recognize design patterns in others' code, or recognize a problem in the design phase that fits well with a pattern; and then examine the formal pattern, and examine the problem, and determine what the delta is between them, and what that says about both the pattern and the problem.</p>
<p>It's really the same as coding; K&R may be the "bible" for C, but reading it cover-to-cover several times just doesn't give one practical experience; there's no replacement for experience.</p>
http://stackoverflow.com/questions/315000/how-to-study-design-patterns/315067#3150670Answer by Joachim Sauer for How to study design patterns?Joachim Sauer2008-11-24T18:56:00Z2008-11-24T18:56:00Z<p>Lot of good examples have been given. I'd like to add one:</p>
<p>Misapply them. You don't need to do that intentionally, it will happen when you try to apply them in your initial Design-Pattern-fit. During that time every single problem that you'll see will seem to fit exactly one design pattern. Often the problems all seem to fit the same design pattern for some reason (Singelton is a primary candidate for that).</p>
<p>And you'll apply the pattern and it will be good. And some months later you will need to change something in the code and see that using that particular pattern wasn't that smart, because you coded yourself into a corner and you need to refactor again.</p>
<p>Granted, that's not really a do-that-and-you'll-learn-it-in-21-days answer, but in my experience it's the most likely to give you a good insight into the matter.</p>
http://stackoverflow.com/questions/315000/how-to-study-design-patterns/315085#3150851Answer by David Nehme for How to study design patterns?David Nehme2008-11-24T19:00:40Z2008-11-24T19:00:40Z<p>For books, I would recommend <a href="http://books.google.com/books?id=JPOaP7cyk6wC" rel="nofollow">Design Patterns Explained</a>, and <a href="http://books.google.com/books?id=LjJcCnNf92kC" rel="nofollow">Head First Design patterns</a>. To really learn these patterns, you should look at your existing code. Look for what patterns you are already using. Look at <a href="http://en.wikipedia.org/wiki/Code_smell" rel="nofollow">code smells</a> and what patterns might solve them.</p>
http://stackoverflow.com/questions/315000/how-to-study-design-patterns/315086#3150862Answer by JB Brown for How to study design patterns?JB Brown2008-11-24T19:00:55Z2008-11-24T19:00:55Z<p>I've lead a few design patterns discussion groups (<a href="http://www.patternsgroup.com/wiki/" rel="nofollow">our site</a>) and have read 5 or 6 patterns books. I recommend starting with the Head First Design Patterns book and attending or starting a discussion group. The Head First book might look a little Hasboro at first, but most people like it after reading a chapter or two. </p>
<p>Use the outstanding resource - <a href="http://www.industriallogic.com/papers/learning.html" rel="nofollow">Joshua Kereivisky's A Learning Guide to Design Patterns</a> for the pattern ordering and to help your discussion group. Out of experience the one change I suggest to the ordering is to put Strategy first. Most of today's developers have experienced some good or bad incarnation of a Factory, so starting with Factory can lead to a lot of conversation and confusion about the pattern.This tends to take focus off how to study and learn patterns which is pretty essential at that first meeting.</p>
http://stackoverflow.com/questions/315000/how-to-study-design-patterns/315089#3150890Answer by Bill K for How to study design patterns?Bill K2008-11-24T19:04:06Z2008-11-24T19:04:06Z<p>Design patterns are just tools--kind of like library functions. If you know that they are there and their approximate function, you can go dig them out of a book when needed.</p>
<p>There is nothing magic about design patterns, and any good programmer figured 90% of them out for themselves before any books came out. For the most part I consider the books to be most useful at simply defining names for the various patterns so we can discuss them more easily.</p>
http://stackoverflow.com/questions/315000/how-to-study-design-patterns/315119#3151190Answer by rmeador for How to study design patterns?rmeador2008-11-24T19:13:22Z2008-11-24T19:13:22Z<p>The way I learned design patterns is by writing lots of really terrible software. When I was about 12, I have no idea what was good or bad. I just wrote piles of spaghetti code. Over the next 10 years or so, I learned from my mistakes. I discovered what worked and what didn't. I independently invented most of the common design patterns, so when I first heard what design patterns were, I was very excited to learn about them, then very disappointed that it was just a collection of names for things that I already knew intuitively. (that joke about teaching yourself C++ in 10 years isn't actually a joke)</p>
<p>Moral of the story: write lots of code. As others have said, practice, practice, practice. I think until you understand why your current design is bad and go looking for a better way, you won't have a good idea of where to apply various design patterns. Design pattern books should be providing you a refined solution and a common terminology to discuss it with other developers, not a paste-in solution to a problem you don't understand.</p>
http://stackoverflow.com/questions/315000/how-to-study-design-patterns/315200#3152000Answer by Artur Ejsmont for How to study design patterns?Artur Ejsmont2008-11-24T19:42:05Z2008-11-24T20:08:30Z<p>Does anyone know any good books, online docs or even projects where design patterns can be observed in a really nice way? ;-)</p>
<p>I was read Head First patterns and JSP (has a few as well) and they are great, i read tons of wikis, manuals books etc and still dont feel like i have really seen it live and breathing :- )</p>
<p>If anyone knows screencasts, books or docs where real applications design is explained in a walkthrough way that could be great.</p>
http://stackoverflow.com/questions/315000/how-to-study-design-patterns/315251#3152510Answer by Perpetualcoder for How to study design patterns?Perpetualcoder2008-11-24T19:56:41Z2008-11-24T19:56:41Z<p>The notion that read design patterns, practice coding them is not really going to help IMO. When you read these books 1. Look for the basic problem that a particular design pattern solves,starting with Creational Patterns is your best bet. 2. I am sure you have written code in past, analyze if you faced the same problems that design patterns aim at providing a solution. 3. Try to redesign/re factor code or perhaps start off fresh.</p>
<p>About resources you can check these</p>
<ol>
<li>www.dofactory.com</li>
<li>Design Patterns: Elements of Reusable Object-Oriented Software (Addison-Wesley Professional Computing Series) by Erich Gamma, Richard Helm, Ralph Johnson, and John M. Vlissides</li>
<li>Patterns of Enterprise Application Architecture by Martin Fowler</li>
</ol>
<p>1 is quick start, 2 will be in depth study..3 will explain or should make you think what you learnt in 2 fits in enterprise software.</p>
<p>My 2 cents...</p>
http://stackoverflow.com/questions/315000/how-to-study-design-patterns/322942#3229420Answer by Vorleak Chy for How to study design patterns?Vorleak Chy2008-11-27T04:39:36Z2008-11-27T04:39:36Z<p>I would think it is also difficult to study design patterns. You have to know more about OOP and some experiences with medium to big application development. For me, I study as a group of developers to make discussion. We follow <a href="http://www.industriallogic.com/papers/learning.html" rel="nofollow">A Learning Guide To Design Patterns</a> that they have completed the patterns study. There are C# and JavaScript developers join together. It is fancy thing for me is the C# developer write codes in JavaScript and the JavaScript developer do the same thing for C# codes. After I leave a meeting I also research and read a few books at home to review. The better way to understand more and remember in my mind is to do blogging with examples in both C# and JavaScript in here <a href="http://tech.wowkhmer.com/category/Design-Patterns.aspx" rel="nofollow">http://tech.wowkhmer.com/category/Design-Patterns.aspx</a>.</p>
<p>I would suggest first before going to each design patterns please understand the name of patterns. In addition if someone know the concept please just explain and give one example not only just programming but in the read world.</p>
<p>for example: </p>
<p>Factory Method:</p>
<p>Read world: I just give money $5, $10 or $20 and it will produce pizza back without knowing anything about how it produce, I just get a small, medium or big pizza depend on money input so that I can eat or do whatever. </p>
<p>Programming: The client just pass parameter value $5, $10 or $20 to the factory method and it will return Pizza object back. So the client can use that object without knowing how it process.</p>
<p>I'm not sure this can help you. It depends on knowledge level of people join in the meeting.</p>
http://stackoverflow.com/questions/315000/how-to-study-design-patterns/336163#3361630Answer by Phillip Ngan for How to study design patterns?Phillip Ngan2008-12-03T03:45:38Z2008-12-03T03:45:38Z<p>Have you read "Design Patterns Explained", by Allan Shalloway.</p>
<p>This book is very different from other design pattern books because it is not so much a catalog of patterns, but primarily presents a way of decomposing a problem space that maps easily to patterns.</p>
<p>Problems can be decomposed into two parts: things that are common and things that vary. Once this is done, we map the common things to an interface, and the things that vary to an implementation. In essence, many patterns fall into this "pattern".</p>
<p>For example in the Strategy pattern, the common things are expressed as the strategy's context, and the variable parts are expressed as the concrete strategies.</p>
<p>I found this book highly thought provoking in contrast with other pattern books which, for me, have the same degree of excitement as reading a phone book.</p>
http://stackoverflow.com/questions/315000/how-to-study-design-patterns/339422#3394220Answer by David Robbins for How to study design patterns?David Robbins2008-12-04T02:18:05Z2008-12-04T02:18:05Z<p>I think you need to examine some of the issues you have encountered as a developer where you pulled your hair out after you had to revise your code for the 10th time because of a yet another design change. You probably have a list of projects where you felt that there was a lot of rework and pain.</p>
<p>From that list you can derive the scenarios that the Design Patterns intend to solve. Has there been a time where you needed to perform the same series of actions on different sets of data? Will you need to be able to future capability to an application but want to avoid reworking all your logic for existing classes? Start with those scenarios and return to the catalog of patterns and their respective problems they are supposed to solve. You are likely to see some matches between the GoF and your library of projects. </p>