What are the most overused design examples? Provide better examples if you have them. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T07:22:44Z http://stackoverflow.com/feeds/question/555924 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/555924/what-are-the-most-overused-design-examples-provide-better-examples-if-you-have-t 3 What are the most overused design examples? Provide better examples if you have them. Scott Muc 2009-02-17T08:31:34Z 2009-05-08T09:37:10Z <p>When given an example of refactoring, I'm tired of seeing a <strong>Data Access Layer</strong> with string literals for connection strings being replaced by <em>IConnectionStringProvider</em>.</p> <p>eg:</p> <pre><code>public DataSet GetCustomers() { string connectionString = "SQLClient;Blah;Blah"; using(SqlConnection conn = new SqlConnection(connectionString)) ... </code></pre> <p>to this</p> <pre><code>public DataSet GetCustomers() { string coonectionString = connectionStringProvider.GetConnectionString(); using(SqlConnection conn = new SqlConnection(connectionString)) ... </code></pre> <p>In the <strong>Domain Driven Design</strong> world I'm tired of seeing the Domain be a <em>Customer</em> who has many <em>Orders</em> which also has many <em>OrderLineItems</em>. Please explain <strong>Aggregate Roots</strong> using something a bit more interesting please!</p> <p>Or am I completely losing it and rehashing these simplistic is the best way to teach these ideas?</p> <p>Ooh, and using shapes to explain inheritance...</p> <p>What examples to you use to teach these concepts?</p> http://stackoverflow.com/questions/555924/what-are-the-most-overused-design-examples-provide-better-examples-if-you-have-t/555934#555934 1 Answer by Henrik Paul for What are the most overused design examples? Provide better examples if you have them. Henrik Paul 2009-02-17T08:34:18Z 2009-02-17T08:34:18Z <p>I remember reading of OOP with examples of a <code>Car</code> or <code>Bicycle</code> extending a <code>Vehicle</code>, all having a <code>steer()</code>-method (or something similar)</p> http://stackoverflow.com/questions/555924/what-are-the-most-overused-design-examples-provide-better-examples-if-you-have-t/556017#556017 0 Answer by Techmaddy for What are the most overused design examples? Provide better examples if you have them. Techmaddy 2009-02-17T09:00:07Z 2009-02-17T09:00:07Z <p>I remember the Employee, Manager example in OOP and in Database design.</p> http://stackoverflow.com/questions/555924/what-are-the-most-overused-design-examples-provide-better-examples-if-you-have-t/556052#556052 0 Answer by Martin for What are the most overused design examples? Provide better examples if you have them. Martin 2009-02-17T09:13:21Z 2009-02-17T09:13:21Z <p>Duck.Quack();</p> http://stackoverflow.com/questions/555924/what-are-the-most-overused-design-examples-provide-better-examples-if-you-have-t/556114#556114 1 Answer by Piku for What are the most overused design examples? Provide better examples if you have them. Piku 2009-02-17T09:45:29Z 2009-02-17T09:45:29Z <p>The OO one of having a House object, containing several Window objects and a Door object being too abstract to be useful.</p> <p>And yeah the vehicle related one isn't so good either.</p> <p>The question to think here is "what do I want the people reading this to <em>learn</em>?" If you're trying to get people to learn about objects and inheritance, then do it using real examples that make sense.</p> <p>So a dialog object, containing several button objects and a textbox object is a much more realistic idea and no more complex to understand - everyone has seen a dialog box before. This can then be refined into a generic 'window' object, of which buttons, textboxes and dialogs are subclasses.</p> <p>This would then conveniently lead onto creating a real, working piece of code, rather than filling the reader's head with abstract theory and then seeing if they can make the mental jump to real world concepts.</p> http://stackoverflow.com/questions/555924/what-are-the-most-overused-design-examples-provide-better-examples-if-you-have-t/560234#560234 0 Answer by Sujoy for What are the most overused design examples? Provide better examples if you have them. Sujoy 2009-02-18T08:21:40Z 2009-02-18T08:21:40Z <p>for the inheritance in OOP, i'd usually go with a quadrilateral. extend it to make square, rectangle, ... extend square to make a cube, rectangle to make a cuboid ...</p> http://stackoverflow.com/questions/555924/what-are-the-most-overused-design-examples-provide-better-examples-if-you-have-t/560240#560240 2 Answer by Steve Rowe for What are the most overused design examples? Provide better examples if you have them. Steve Rowe 2009-02-18T08:23:53Z 2009-02-18T08:23:53Z <p>As someone who does a lot of phone screens, I am tired of hearing about Shape being the base class for Square and Circle. We need some more independent thought when it comes to discussing class hierarchies and interfaces.</p> http://stackoverflow.com/questions/555924/what-are-the-most-overused-design-examples-provide-better-examples-if-you-have-t/560253#560253 1 Answer by peterchen for What are the most overused design examples? Provide better examples if you have them. peterchen 2009-02-18T08:30:40Z 2009-02-18T08:30:40Z <p>Class factories / Builder Pattern. </p> <p>Especially the many articles about convoluted template stuffery to put the pattern into code once and for all. I mean, yeah, it can be done, it is a useful pattern but it's not the holy grail. It's an object creating objects. With interfaces. And parameters. And stuff.</p> <p>Blargh. </p> http://stackoverflow.com/questions/555924/what-are-the-most-overused-design-examples-provide-better-examples-if-you-have-t/836473#836473 2 Answer by Kristopher Johnson for What are the most overused design examples? Provide better examples if you have them. Kristopher Johnson 2009-05-07T19:13:03Z 2009-05-08T09:37:10Z <p>I'm tired of seeing functional-programming advocates show how "quicksort" can be implemented in one line in Haskell, OCaml, F#, Scheme, etc. The "quicksort" that they show is not really Quicksort, because it is not swapping elements in place, and is doing all sorts of list construction and garbage collection. Doing a real Quicksort in a functional language is really messy.</p> <p>Makes me wonder what else they are lying about.</p>