What are the most overused design examples? Provide better examples if you have them. - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T07:22:44Zhttp://stackoverflow.com/feeds/question/555924http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/555924/what-are-the-most-overused-design-examples-provide-better-examples-if-you-have-t3What are the most overused design examples? Provide better examples if you have them.Scott Muc2009-02-17T08:31:34Z2009-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#5559341Answer by Henrik Paul for What are the most overused design examples? Provide better examples if you have them.Henrik Paul2009-02-17T08:34:18Z2009-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#5560170Answer by Techmaddy for What are the most overused design examples? Provide better examples if you have them.Techmaddy2009-02-17T09:00:07Z2009-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#5560520Answer by Martin for What are the most overused design examples? Provide better examples if you have them.Martin2009-02-17T09:13:21Z2009-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#5561141Answer by Piku for What are the most overused design examples? Provide better examples if you have them.Piku2009-02-17T09:45:29Z2009-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#5602340Answer by Sujoy for What are the most overused design examples? Provide better examples if you have them.Sujoy2009-02-18T08:21:40Z2009-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#5602402Answer by Steve Rowe for What are the most overused design examples? Provide better examples if you have them.Steve Rowe2009-02-18T08:23:53Z2009-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#5602531Answer by peterchen for What are the most overused design examples? Provide better examples if you have them.peterchen2009-02-18T08:30:40Z2009-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#8364732Answer by Kristopher Johnson for What are the most overused design examples? Provide better examples if you have them.Kristopher Johnson2009-05-07T19:13:03Z2009-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>