vote up 0 vote down star

This is a jigsaw piece I am maintaining (bonus: green = commented response.write used for debugging)

So I am wondering, what kind of shape do good code tend to have?

flag

32% accept rate
is that all one file/class/function ??? – theman_on_vista Apr 8 at 19:45
OMG I hope that isn't all in one file! – scunliffe Apr 8 at 20:03
Yes, and it is 1 single include file, which is called in a nested loop. Function is an unknown concept here. But hey at least there's no goto's. I am optimistic. – Haoest Apr 8 at 20:09
1  
Code is great if it's shape can be at least 85% matched to an audio amplitude graph of any song by Phil Collins. All great coders need two ears and a heart. – Furious Coder Apr 8 at 21:21
Turn your head to the side and squint and it could be complex sheet music. If the form and whitespace of source like this could be turned into audio, you could ask what good code sounds like. – geofftnz Apr 8 at 21:22

5 Answers

vote up 2 vote down

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.

(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.)

link|flag
vote up 1 vote down

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 Source Monitor.

link|flag
upvoted for source monitor :) First impression is good. – Haoest Apr 8 at 20:06
vote up 4 vote down

Good code is decomposed into short functions that do one thing and do it well.

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.

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 .

Consider the following anti-pattern:

// code is Java

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();
      }
    }
}

which of course we should replace with:

void foo( BarType b ) {
   b.overridenFunction();
}
link|flag
vote up 1 vote down

The various repetative > > > > huge indents suggest that you need some methods to handle repetative logic.

Any time you get:

foo = bar;
if(...){
  if(...){
    if(...){
      if(...){
        if(...){
          actually doSomething();
        }
      }
    }
  }
}
baz = doOther();

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.

foo = bar;
doStuff();
baz = doOther();
link|flag
vote up 0 vote down

Good indentation.

Line breaks where necessary. To prevent excessive horizontal scrolling.

Short methods and classes. Which tends to be correlated with good design / loose coupling.

Good use of vertical whitespace. To draw attention to section boundaries (e.g. public vs. private, preparation vs. action, etc.)

These are just rules of thumb though. Ultimately the code itself determines quality.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.