up vote 18 down vote favorite
12
share [g+] share [fb]

"Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." --Brian Kernighan

It seems to be a subjective question, but in your opinion,

'What exactly is he intending "clever" to be?'

link|improve this question

3  
I retitled your question to make it less of a target for the close-hammer – Colin Pickard Jul 9 '09 at 11:35
Rep catch attempt? – rahul Jul 9 '09 at 11:48
Otherwise make it community Wiki – rahul Jul 9 '09 at 11:59
feedback

10 Answers

up vote 40 down vote accepted

If the code is complex enough to be at the limits of your skills, then debugging that code will exceed your skills. In other words, don't make code so complex that you can't maintain it.

edit

I just ran into another quote from Kernighan (and Plauger, in "The Elements of Programming Style"), which I think helps clarify the first:

Everyone knows that debugging is twice as hard as writing a program in the first place. So if you’re as clever as you can be when you write it, how will you ever debug it?

link|improve this answer
3  
Part of that is because, when you come back in 6 months or a year to debug or augment the code, you won't remember the entire process that got you to the 'clever' code and you'll be saying "why did I do that?" – David Jul 9 '09 at 11:59
3  
The underylying issue is that, to debug code, you need to understand it deeply. If the code is simple, you can reload your brain by looking it over again, particularly if the code is readable and has good commenting and documentation. If the code is complex, you're not going to be able to grasp all of it at once, so you won't be effective at debugging it. This is why code maintainability (and to a lesser extent, initial development) is all about limiting complexity, such as by breaking the program up into independent units. – Steven Sudit Jul 9 '09 at 12:18
feedback

You write code that is right on the bleeding edge of your ability to understand it. But when you come to debug it, you neeed even more understanding, which you haven't got.

The "cleverness" could be technology, data structures, algorithms - anything that you only just understand. Probably all three in my case.

link|improve this answer
feedback

IMHO,
usually when we go back to modify old code (2-3 months old) we try to understand (remember) how it's working. Now, if we've made the mistake to over-optimize or overenginnered it, we'll have really hard time modifying it.

link|improve this answer
feedback

It's simple math, yes? Let's say you're writing a application named "Thingy".

X = how smart you are.
S(WriteThingy) = how smart you need to be to write the code for Thingy.
S(DebugThingy) = how smart you need to be to debug the code for Thingy.

Debugging is twice as hard as writing the code in the first place.

So we get:

S(WriteThingy) = 2 * S(DebugThingy)

Given that:

if you write the code as cleverly as possible

We have:

X = S(WriteThingy)

Which basically means that you are no smarter than being able to write Thingy.

And since:

S(WriteThingy) < 2 * S(WriteThingy)

We get:

X = S(WriteThingy) < 2 * S(WriteThingy) = S(DebugThingy)

Or:

X < S(DebugThingy)

Which is basically what he said:

you are, by definition, not smart enough to debug it.

link|improve this answer
3  
You are assuming S(WriteThingy) > 0 – Paolo Capriotti Jul 9 '09 at 11:58
Dang, I knew I forgot to state something :-) – scraimer Jul 12 '09 at 5:35
feedback

If you push the technology the code is using to the brink of what you understand, you don't actually understand it well enough to write or attempt the testing practices that would be best to have for that same code.

link|improve this answer
feedback

It means you aren't as clever as you think you are! And, the sooner you accept that the sooner you can start writing "good" code.

link|improve this answer
feedback

"Clever" in this case means pushing a boundary of some kind - your hardware, your software environment, or your own understanding.

If you can only just reach this bleeding edge when creating the code, you will struggle going beyond the edge to debug it

link|improve this answer
feedback

It simply means adhere to KISS principal. If you are spewing spaghetti of code or weaving architecture like undergrowth of a rain forest then you will choked at it or be lost into it very soon when you try to debug it.

link|improve this answer
feedback

Steven Sudit’s answer is right but changes the emphasis by reversing the statement. Kernighan opens with “Debugging is twice as hard as writing the code in the first place.” That’s the important bit. When you write the code you know, rightly or wrongly, what you’re trying to achieve; when you debug you don’t know why it doesn’t work. Once you accept that debugging is harder than coding then it follows that if you’re coding at the limit of your knowledge then you’re not equipped to be able to debug that code.

link|improve this answer
feedback

I will point out the this is the same guy who felt the following was an acceptable way to copy a string in The C Programming Language:

while( *d++ = *s++ );

So it is hard to say to what extent one should try to limit your cleverness for performance reasons. That said, the advice in spirit still holds.

PS- how the snippet copies the string is an exercise to the read, but note that = is not ==. Then again think about Kernighan's quote.

link|improve this answer
-1: doesn't address the question, and it's a bad copy/paste: I believe you want while (*d++ = *s++); – John Saunders Sep 6 '11 at 16:59
I couldn't find the snippet, but I did from memory. I think the answer does not directly answer the question but the others do a good job. Instead I was trying to contextualise the quote by highlighting the fact that the authour himself seems to break it. If someone doesn't follow their own rules, what do they mean and how good can they be? I disagree with your -1 but it is your right. – ArtB Sep 7 '11 at 18:49
Sure, except that it's a perfectly acceptable way to copy a string (zero-terminated) in C. – John Saunders Sep 7 '11 at 20:01
Except that it is definitely "clever". It depends on the interaction of three or four concepts. It's not obvious what it does unless you are familiar with the idiom. Its exactly the kind of code that the aphorism in question seems to warn against. – ArtB Sep 9 '11 at 13:53
Turns out it's not even "clever". As you say, it's an idiom. And, having been documented in "The C Programming Language", no serious C programmer didn't know the idiom. – John Saunders Sep 9 '11 at 15:12
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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