vote up -6 vote down star

I find myself getting a bad opinion of another developer, when he wants to show me something he developed (in my case a new dialog) and then the IDE runs into xx breakpoints, and eventually the developer clicks the "skip all breakpoints" button of the IDE.

I do normally only have at maximum 3 active breakpoints -- and normally only one. And that only if I am actively tracking a bug. But I get the impression, some of my peers do always have breakpoints active to understand what their code does -- in cases where I would not use a debugger at all.

I didn't even know the "skip all" button exists, and I don't even see many reason to use this button, only to deactivate my breakpoints for now, than do some work I don't want to debug, than activate the breakpoints again. And with only one breakpoint it is easy to deactivate just this one.

What number of breakpoints is normal, what number is acceptable, what number is to much?

Is a big number of active breakpoints a sign for a bad developer, or just a sign of bad code, or both? Or is this just a question of personal style?

flag

60% accept rate
How would you rate the developer if some of those breakpoints were conditional/counted/...? – Richard Mar 3 at 9:52

closed as subjective and argumentative by SCdF, Mark Ingram, Robert Gould, divo, Tomalak Mar 3 at 10:38

9 Answers

vote up 0 vote down

Like you said, use breakpoints to step through your code to either understand or debug the application. Having lots of breakpoints active at all times (although not necessarily wrong) IMHO is a little odd.

link|flag
vote up 3 vote down

If anything I'd guess:

  • No breakpoints in the IDE (while debugging!) might suggest the developer does not know how to use a debugger.

  • Many breakpoints may suggests that either the code is bad, or the developer is relatively new to the code (= it is not his own code), or both.

I don't think many other conclusions can be drawn from the number of breakpoints in the IDE.

link|flag
Or they've got to that hair-tearing, straw clutching point in some nasty debugging session where they're beginning to doubt the fundamentals of whatever language they're writing in ;-) – Jon Cage Mar 3 at 10:12
vote up 0 vote down

One break-point with a proper condition defined (Ref: VS, conditional breakpoints) :)

link|flag
vote up 2 vote down

I always keep the magical number seven in mind when handling stuff, whether it be breakpoints, editor tabs, open files, etc. I.e., I seldom have more than seven tabs open (I find reopening a tab when needed is less effort than finding it among the several dozen open tabs), and I always remove all breakpoints when I finish debugging a certain bug. And even while debugging, I usually find it much more useful to move (i.e., delete + add) a breakpoint closer and closer to the bug location, rather than adding newer and newer ones.

link|flag
vote up 1 vote down

Surely it's a question of the type of app your working with. It's a huge difference in writing, say a domain model or doing some low level win32-api tricks.

link|flag
vote up 0 vote down

I sometimes use "a lot of" breakpoints if I have to deal with complex legacy code (which we have a lot of).

In other cases I use not more than three.

link|flag
vote up 0 vote down

We all inclined to forget what the our code doing, after a while.

link|flag
vote up 25 vote down

I know you have a subjective tag there, but come on!

This is crazy-talk. The number of breakpoints you have active at any one time is completely subject to the situation, and in no way could possibly be the sign of a bad coder. Possibly a lazy one who can't be bothered unchecking a breakpoint, but still.

There is no social norm for breakpoints. Cute schoolgirls will not walk past you on the street and giggle because of your abnormally small number of breakpoints.

Just use what you need and stop trying to think of questions for stack overflow.

link|flag
I agree, the only metric you should be using is how many }'s the programmer is using, the more the better! – Lasse V. Karlsen Mar 3 at 9:48
my sentiments exactly +1 – toolkit Mar 3 at 9:55
2  
Damn it, I tried so hard to keep the number of my breakpoints close to zero and now you tell me this won't help with cute girls. – divo Mar 3 at 10:25
1  
Nailed it. Thank you. – Tomalak Mar 3 at 10:40
vote up 0 vote down

If you inherit a webapp where you jump from one javascript into another with a dozen webservice calls and a few classes where your pages inherit from, it can be quite convenient to have a couple breakpoints, so you can quickly have an overview of certain values at each point. I don't think it is a good base to judge a developer on it.

link|flag

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