Telling quality of source code from its shape - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T14:45:53Zhttp://stackoverflow.com/feeds/question/731483http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/731483/telling-quality-of-source-code-from-its-shape0Telling quality of source code from its shapeHaoest2009-04-08T19:34:16Z2009-04-08T21:02:35Z
<p><a href="http://imgur.com/HDTGI.png" rel="nofollow">This is a jigsaw piece</a> I am maintaining (bonus: green = commented response.write used for debugging)</p>
<p>So I am wondering, what kind of <strong>shape</strong> do good code tend to have?</p>
http://stackoverflow.com/questions/731483/telling-quality-of-source-code-from-its-shape/731494#7314942Answer by Beska for Telling quality of source code from its shapeBeska2009-04-08T19:38:21Z2009-04-08T19:44:20Z<p>I think that while you might be able to find some vague shape-related patterns in good code, your time and metrics are better spent elsewhere.</p>
<p>(While I think the above answer should be more than sufficent, a few simple examples of this would be bad code with non-ideal layout...that could suddenly become "good" code after going through a formatter. Or consider a well written bubble sort. Nice layout, bad performance. The possibilities are endless.)</p>
http://stackoverflow.com/questions/731483/telling-quality-of-source-code-from-its-shape/731538#7315381Answer by Neil Butterworth for Telling quality of source code from its shapeNeil Butterworth2009-04-08T19:47:35Z2009-04-08T19:47:35Z<p>An interesting question. However I think that visual pattern recognition will fail for realistically sized projects. Then you may want to fall back on textual metrics, such as those provided by <a href="http://www.campwoodsw.com/" rel="nofollow">Source Monitor</a>.</p>
http://stackoverflow.com/questions/731483/telling-quality-of-source-code-from-its-shape/731544#7315444Answer by tpdi for Telling quality of source code from its shapetpdi2009-04-08T19:49:44Z2009-04-08T19:49:44Z<p>Good code is decomposed into short functions <em>that do one thing and do it well</em>.</p>
<p>Deep nesting is hard to read, hard to comprehend, and often though not always a sign that someone missed a simpler, clearer way to do something.</p>
<p>Code shape is telling, but more in an intuitive way than by any rule of thumb; it's something that you learn by experience, and each language has its own typical shapes .</p>
<p>Consider the following anti-pattern:</p>
<p>// code is Java</p>
<pre><code>void foo( BarType b ) {
if( b.baz() ) {
if( b instanceof b1 ) {
b.mumble();
} else if( b instanceof b2 ) {
b.fumble();
}
} else {
C c = b.getC();
if( c.whut() ) {
b.mumble();
} else {
b.fumble();
}
}
}
</code></pre>
<p>which of course we should replace with:</p>
<pre><code>void foo( BarType b ) {
b.overridenFunction();
}
</code></pre>
http://stackoverflow.com/questions/731483/telling-quality-of-source-code-from-its-shape/731607#7316071Answer by scunliffe for Telling quality of source code from its shapescunliffe2009-04-08T20:09:00Z2009-04-08T20:09:00Z<p>The various repetative > > > > huge indents suggest that you need some methods to handle repetative logic.</p>
<p>Any time you get:</p>
<pre><code>foo = bar;
if(...){
if(...){
if(...){
if(...){
if(...){
actually doSomething();
}
}
}
}
}
baz = doOther();
</code></pre>
<p>it often boils down to "doStuff()" where the doStuff method can take care of all the logic, and leave the rest of the code clean and readable.</p>
<pre><code>foo = bar;
doStuff();
baz = doOther();
</code></pre>
http://stackoverflow.com/questions/731483/telling-quality-of-source-code-from-its-shape/731822#7318220Answer by Wedge for Telling quality of source code from its shapeWedge2009-04-08T21:02:35Z2009-04-08T21:02:35Z<p><strong>Good indentation.</strong></p>
<p><strong>Line breaks where necessary.</strong> To prevent excessive horizontal scrolling.</p>
<p><strong>Short methods and classes.</strong> Which tends to be correlated with good design / loose coupling.</p>
<p><strong>Good use of vertical whitespace.</strong> To draw attention to section boundaries (e.g. public vs. private, preparation vs. action, etc.)</p>
<p>These are just rules of thumb though. Ultimately the code itself determines quality.</p>