vote up 33 vote down star
13

What are your "favourite" overuses / misconceptions about commenting the code? Why do you sometimes think commenting is a pain? What arguments would you use to convince others that less is more at commenting in some cases?

This is the negative counterpart to How to convince people to comment their code - such that it remains a collection of answers, not a convoluted discussion. Compare also Commenting code, Do you comment your code, and What's the least useful comment you've ever seen?

How about writing one reason per answer, so the voting works on the reasons?

flag

59 Answers

1 2 next
vote up 0 vote down

Writing good comments is an art just like writing good code. When too many comments obfuscate the code itself or when the comments duplicate the code then it may be time to back off a little.

link|flag
show 1 more comment
vote up 76 vote down

The classic way NOT to comment is:

//add 1 to count

count++;

Rename count to tell me what you are counting and I don't need a comment. Telling me what the counter is used for would be okay in a comment.

link|flag
show 2 more comments
vote up 2 vote down

Don't comment every line, eg:

i++; // increment i by 1

j = "foo"; // set j to "foo";

ETA: Whoops, a bit late.

link|flag
vote up -1 vote down

Some conventions require you to enter tons of nearly useless javadoc-tags. For instance:

/** The ID for the User. (For the format compare {@link IDGenerator}). */
private String id;

/**
 * Gets the ID for the User. (For the format compare {@link IDGenerator}).
 * @return the ID
 */
 public String getID() { return id; }

/**
 * Sets the ID of the Object. (For the format compare {@link IDGenerator}).
 * @param id the ID to set
 */
public void setId(String theId) { id = theId; }

EDIT: My point is especially that in some conventions you are enforced to comment the variable, the setter and the getter, although they are nearly identical and should be unified. This might be good practice for public APIs and Open Source Code, but is certainly overdone for internal code. For this purpose I'd suggest to leave out the @param and @return tags and just comment the getter.

link|flag
show 6 more comments
vote up 6 vote down

Comments are sometimes used as an excuse for writing obtuse code.

By encouraging others to write less comments, it sometimes encourages them to use better names in variables, methods, etc. and use more understandable logic and flow.

link|flag
vote up 23 vote down

// gets the user from the session
User user = session.getAttribute("USER");
// Gets the comment from the user's comments from the comment id on the request
Comment comment = user.getComment(request.getAttribute("COMMENT_ID"));
// Adds one to comment rating
comment.rating++

link|flag
2  
Also adds one to your rating :) – Victor Hurdugaci Oct 18 at 17:00
vote up 57 vote down

Don't explain the programming language to the reader. You should assume readers know the language as well as you do (or can look things up if necessary).

For example, I once saw C++ code that looked something like this:

// This is a template.  A template allows us to specify a
// class that can be parameterized with other types.
template <class T>
class Foo {
   // ...
};

// Use 'typedef' to declare type aliases
typedef Foo<int> IntFoo;     // IntFoo instantiates Foo for 'int'
typedef Foo<char> CharFoo;   // CharFoo instantiates Foo for 'char'

Such comments make sense in a tutorial, but they don't belong in production code.

link|flag
6  
probably was copied and pasted from a tutorial ;) – tloach Oct 2 '08 at 17:52
1  
What if you know that your colleague is an idiot who can't understand the code? – Marcin Oct 5 '08 at 9:02
9  
Littering the code with comments won't make the idiots any smarter. – Kristopher Johnson Oct 6 '08 at 10:03
show 2 more comments
vote up 5 vote down

I'm not advocating no comments, but IMO, code should be self descriptive. If you function/method is doing more than one thing than the name implies, refactor.

link|flag
vote up 10 vote down

If your variable, property, and/or methods are named correctly and the code you are writing is not complex you won't really need to comment.

For example:

public bool isStackEmpty()
{
    return (this.currentStackSize <= 0);
}
link|flag
5  
I'd want a comment there, to explain why the currentStackSize might be less than 0 ;-p – Steve Jessop Oct 2 '08 at 18:13
2  
I wouldn't consider it a shortcut, is the thing. How it is currently is the correct way, the original was the longer-than-needed way. Going from longer to normal isn't a shortcut, it's good progress. :P – GMan Aug 27 at 5:05
show 3 more comments
vote up 3 vote down

Sadly, when commenting is required for the sake of requirements, you get a bunch of "English" versions of the syntax.

The classic

// Add one
i++;

I've been required to generate 50% comments by a contract and ended up generating garbage like that. Even worse, it became part of my normal coding style. DON'T DO AS TIMMY DOES.

So my reason not to comment "Don't comment just because someone thinks there should be x% comments". That is just stupid.

link|flag
vote up 44 vote down

Worse case I've seen is:

// Adding an extra comment to push my percentage of
// comments over the amount required
i++;

Serious horror!

link|flag
13  
It's a horrible comment, but also a symptom of asinine management practices – Dana Oct 2 '08 at 18:25
8  
I prefer this comment rather than "// add one to i" – Turambar Oct 2 '08 at 19:19
7  
Works for me. The serious horror there is the horrible requirement which mandated the comment rather than the comment itself. – Dave Sherohman Oct 3 '08 at 0:42
show 3 more comments
vote up 5 vote down

What’s the golden code/comment ratio?

link|flag
vote up 8 vote down

I think a goal of every developer is to over time be able to write commentless code. Code that self expresses itself is beautiful code. I wouldnt go so far as to say its an excuse to write bad code, but a lot of people dont have enough experience or ability to write code that requires little or no commenting. It takes a long time, a lot of practice and experience.

Bottom line, as you get older and grow fatter, your comments should get thinner ;)

EDIT: In case others wish to downvote me for whatever reason, just to make it clear this is in general and does not go into detail about commenting complicated intentions, etc. If you disagree, put a comment so i at least know what your disagreement is. How the hell are we supposed to learn from each other with silence.

EDIT2: just figured i would add a little extreme snippet

//This check makes sure the nuclear reactor is within normal parameters
if(a < 5 && b > 8 && c == 9)
{
    ...
    ...
}

This should be refactored for 3 reasons. Reduce commenting, increase readability, reuasability

if(IsNuclearReactorWithinNormalParams(a, b, c))
{
    ...
    ...
}

bool IsNuclearReactorWithinNormalParams(int coreTemp, int stackTemp, int reloopThreshold)
{
    return coreTemp < CORE_OVERHEAT_TEMP && stackTemp > STACK_MIN_TEMP && reloopThreshhol == RELOOP_THRESHHOLD;
}

Look ma, no comments!

But even still the incoming params should also have been refactored and renamed to proper names so it is clearer. When you follow stuff such as this your commenting becomes reduced by a huge factor. ESPECIALLY when it is a mission ciritical app. Comments alone just dont cut it in mission critical apps.

link|flag
show 1 more comment
vote up 1 vote down
// fix for bug #6837
splines.reticulate();

Don't comment why you made a change. Put those comments in the source control system, so the comment is attached to the change itself.

link|flag
2  
As long as you put a (brief) description of the bug and why the change is necessary along with the bug number, I don't see a problem with this. If I'm looking at code and don't understand why we're doing something, I don't want to go through the SCC to find out why. – Graeme Perrow Oct 2 '08 at 18:33
show 3 more comments
vote up 19 vote down

Don't detail the history of how code got to be how it is. That's what version control is for.

For example, don't do this:

// This method was originally called GetSalesDollars(), but now that we
// support other currencies, we've changed the name.  :)
Money GetSales() {
   // ...
}

or this

// oops.  This crashed if the denominator was zero
//return sum / n;
if (n != 0)
    return sum / n;
else
    return 0;

You might think such comments will be helpful to future readers, but honestly, nobody cares. This stuff is just cruft that will build up and make it harder to read the code. Tell your war stories in a bar or on your blog, not in production code.

link|flag
1  
The first one might be useful if there's some reason why people might be searching for "GetSalesDollars" – Mark Baker Oct 2 '08 at 19:16
3  
I think the 2nd example is a reasonable comment. In some places you do not have to test for division by zero, and in some you have because zero can happen there. The comment tells it is the 2nd case. The comment could be improved, but still it is usefull, so that no one removes the test later. – Suma Oct 2 '08 at 21:06
1  
The concept of the second comment, if not this particular example, is good. If there is a known problem that needs describing so that the workaround is not removed when refactored then this should be commented. – BlackWasp Oct 2 '08 at 21:15
show 10 more comments
vote up 2 vote down

IMHO, if you have a block of code that is complicated enough to warrant a comment, an alternative to said comment is to throw that code into a function that has a descriptive name.

link|flag
vote up 11 vote down

To me, comments are meant to explain why you did it that way not what you did. If you have to explain what you did then the code probably sucks and needs to be redone.

link|flag
vote up 14 vote down

A great place to not comment code is when the code is self-commenting (i.e. variables are well named, program flow is clear, encapsulation has been used correctly, etc.).

However, as a caveat I would submit that knowing this about code you're currently working on is really hard for most people to do. This is because code that is currently being developed by you or those on your team is usually pretty obvious to yourself and your teammates. The time when comments really pay off is when a new developer either comes on to the team or has to begin to maintain a source tree that they have never worked on before. For instance, I recently began to look through the Wordpress source tree, and the fact that there are lots of segments of code that are uncommented or commented on by someone who clearly was very familiar with what the code did already has made it very difficult for me to get a grasp on the system right up front.

So, a 'best practice' might be the following (I don't actually do this, but I'm trying to get in the habit): When you write a new piece of functionality, get a fellow programmer in your team to come over, sit them down, and explain what your code does (or possibly better yet, try to have them explain what your code does) and, if that goes over without a hitch, you probably don't need a comment. If it is challenging, comment away, and long after you're no longer working on the project, that code should be clear to whoever has to work on it.

Another great benefit to this would be the following: Should you be unable to think of anything but an obfuscated way to implement a feature, if you clearly document your intention, someone who comes along later who might have a different flash of insight than you will be able to see what it's doing right off the bat and refactor it, knowing that they are still following the original intention of the code block.

That's my two cents at least.

link|flag
show 4 more comments
vote up 0 vote down

Leave older versions of the code as comment is also quite a bad practice, too often seen.

link|flag
1  
I think this happens (at least sometimes) because someone is testing code and they get it working and they're not diligent enough to double check the code before they check it into source control. At least that's been my experience. – Onorio Catenacci Oct 2 '08 at 18:17
vote up 1 vote down

I think that you MUST comment any block of code that has business logic or code that seems to be doing something that follows rules that are relevant to the flow of your system so it wouldn't make sense to add a comment to tell the developer that you are looping through a collection but maybe it makes sense to tell the developer WHY you have to loop through the collection or why you break if X happens.

link|flag
vote up 0 vote down

Commenting that is overly verbose is generally not only unnecessary, its a bad idea. Your comments, if needed, should be just as clean as your code if not cleaner. I only truly expect large blocks of commenting when the functionality is commonly used and thus elicits many questions or the functionality isn't clear.

Also, if you're in Visual Studio, I highly recommend GhostDoc as it can eliminate a lot of typing on your part for simple things that need documentation.

link|flag
vote up 1 vote down

You should not comment when self explanatory code is enough.

For instance:

// Verifies if the "credit" ( or whatever ) is approved.
if( tries < 15 && x > 0 && x <= 1 && y != x || count == d  ){
    ...
}

Sure it deserves a comment. But this is way much better

if( isCreditApproved() ) {
    ...
}

Remember:

Blockquote

Any fool can write code that a computer can understand. Good programmers write code that humans can understand. -Martin Fowler

Blockquote

And everyone knows that comments are not executed.

link|flag
show 3 more comments
vote up 52 vote down

Don't leave commented-out code in source files.

If you don't need it, then you don't need it. Delete it. You can always get it again from your version-control system.

If you think you might need it, then instead of commenting it, enclose it in a conditional-compilation block, move it to a separate function, or otherwise get it out of the way and clearly mark it as not-real-code.

link|flag
3  
I sometimes do this, but it's amazing how quickly that commented out code degenerates into something that works almost, but not completely, unlike anything else in the same class. – Paul Tomblin Oct 3 '08 at 18:02
show 3 more comments
vote up 8 vote down

I use comments for three things:

  1. Auto-Documentation: For use by IntelliSense systems, even if its 'obvious' by looking at the code. It infuriates me no end to see other libraries or apps that lack member documentation when I'm trying to browse them from IntelliSense, so I make sure to fill in all of mine.
  2. Justification: The best use of a comment, saying why the code exists or is needed. This shouldn't consist of too much 'how' or 'what' though.
  3. Summary: In larger methods or property lists, I title subsections or groups with a small comment to say what the section does for easier reading and parsing. As a side effect, if I find myself describing two methods with the same sub-section names, it helps suggest a possible location of duplication that I should refactor.
link|flag
1  
I have seen documentation comment in private methods also. Style cop enforces them. Is there any reason? – Tanmoy Oct 6 at 11:42
1  
If you end up sharing the source of the library with other programmers so they can edit the library, it can certainly be a big help to have everything well documented and named. – Nidonocu Oct 7 at 23:41
vote up 2 vote down

Code should always be as absolutely self-documenting as possible. If you look at a piece of code and realize you can restructure it so a comment is no longer necessary, that is the best course of action, since it makes the code easier to understand.

Obviously, this doesn't mean you should never used comments--it means that code should be designed so as to be as understandable as possible before people look at the comments. Comments should be reserved for FIXMEs, explanations for non-obvious tricks/hacks/similar, and explanation of complex algorithms and functions. The majority of code should not need significant commenting.

link|flag
vote up 1 vote down

If a comment makes you feel stupid while reading it, you should really try to avoid committing that comment to your source control.

Example:

// I've no idea why, but this fixes Bug#0815:
i++;


If a comment makes you feel smart while reading it, you should really try to avoid committing that comment to your source control.

Example:

// This is the fastest strReplace *evarrr*!
// I got it from this nifty coding site:
// http://thedailywtf.com/Articles/My-str_replace()-Can-Beat-Up-Your-str_replace().aspx
function fixString($string, $chars = 0) {
    // ...


I have to admit that in both cases, the primary problem is not the comment. But they're a "smoking gun", so to say.

link|flag
vote up 3 vote down

Almost all comments can be avoided using the Extract Method refactoring and giving a good name to the method.

I only comment code that can me misunderstood and removed by other programmer on the team, as an example, last week I had to comment a code when I used something like:

Field.Value <> Null

It would take, hum, let me think, 2 minutes until someone would change that to Field.IsNull, but the problem is that IsNull in a Aggregate Field, Always return True (if I'm not mistaken) in Delphi, so changing it to IsNull would introduce a bug.

But I extremely recommend you to think twice before writing any comments, comments are most likely needed when the code is bad.

link|flag
vote up 3 vote down

I just love these:

//
// Set the DIB bits to the device.
//

result = SetDIBitsToDevice( ..10 arguments or so );
link|flag
show 1 more comment
vote up 2 vote down

At worst, comments can lie. At best, they can be redundant.

They're usually only okay for something unintuitive. As in.

// HACK: If I don't call this twice, Foo breaks. 
Bar.Setup();  
Bar.Setup();

If you have a method like this

User.Save();
// Send confirmation email...

That's a code smell, and you should refactor to method.

User.Save();
sendConfirmationEmail();
link|flag
vote up 6 vote down

Based on a true story. Don't ask a question in comments for some other hypothetical person to answer:

// Crap, why is this here?
// Well, just in case it happens somehow.
if (i < 0.0)
{
  printf("Uh oh!\n");
  i = 175;
}

It's better just explain why something is there in the first place, and if you're doubtful, make sure you resolve the problem yourself, find the answer, or ask someone (your colleagues, stackoverflow, etc.)

link|flag
show 2 more comments
1 2 next

Your Answer

Get an OpenID
or

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