up vote 45 down vote favorite
20
share [g+] share [fb]

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?

link|improve this question
feedback

closed as not constructive by Bill the Lizard Oct 20 '11 at 11:24

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

58 Answers

1 2

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|improve this answer
show 2 more comments
feedback

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|improve this answer
14  
probably was copied and pasted from a tutorial ;) – tloach Oct 2 '08 at 17:52
5  
What if you know that your colleague is an idiot who can't understand the code? – Marcin Oct 5 '08 at 9:02
14  
Littering the code with comments won't make the idiots any smarter. – Kristopher Johnson Oct 6 '08 at 10:03
show 2 more comments
feedback

Don't comment the end of blocks. i.e.

if (...)
{
    ...
} // if

If your blocks are that big that you can't figure out where they start & stop, you seriously need to refactor your code.

link|improve this answer
7  
This rule should not apply to pre-processor statements I think #ifndef HEADER_NAME_H : : #endif /* HEADER_NAME_H */ Is a useful construct as these can be quite long blocks – Vagnerr Oct 3 '08 at 9:36
4  
I've generally seen this from people who move from languages where control ends with a keyword (IF ... END IF, WHILE...WEND, etc). They say you always write code in the language you first learned ;) – tloach Oct 3 '08 at 15:27
1  
@tloach - i definitely do that when i code in vb usually at the else statement to say why the else statement is necessary – Jason Nov 20 '09 at 0:56
1  
I do this if the matching brace doesn't fit on the same vertical screen, or if there are a bunch of close braces all in a row. Sometimes it's just not possible or reasonable to refactor the code in such a way that you only have 20-line functions. That being said, I do agree that these comments are not a substitute for proper code factoring and organization. – Jon Seigel Dec 18 '09 at 14:58
show 1 more comment
feedback

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|improve this answer
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
2  
+1 to Paul's comment for HHGTG reference ;) – therefromhere Jul 13 '09 at 11:03
3  
Sometimes I'll leave a block of code in there to remind myself that I've already tried to fix it - it didn't work and not to add the code again. I'll also include a reference to any relevant issue tracking record or support ticket to refresh my memory. – Paul Alexander Mar 19 '10 at 21:58
show 2 more comments
feedback

Worse case I've seen is:

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

Serious horror!

link|improve this answer
23  
It's a horrible comment, but also a symptom of asinine management practices – Dana Oct 2 '08 at 18:25
13  
I prefer this comment rather than "// add one to i" – Turambar Oct 2 '08 at 19:19
13  
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
feedback

Whenever human possible, write code that doesn't need comments:

When you feel the need to write a comment, first try to refactor the code so that any comment becomes superflouus.

-Martin Fowler ("Refactoring: Improving the Design of Existing Code")

I think commenting code is a bad habit. Commenting code should remain something rare and exceptional.

The time is better spent with:

  • document your code (public methods, purpose of classes, runtime behaviour, configuration)
  • document your design decisions
  • let others review your code
  • automatic testing
link|improve this answer
5  
Rather than "don't comment your code", I'd phrase it as "Write code that doesn't need comments." – Kristopher Johnson Oct 3 '08 at 20:11
show 1 more comment
feedback

// 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|improve this answer
6  
Also adds one to your rating :) – Victor Hurdugaci Oct 18 '09 at 17:00
feedback

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|improve this answer
2  
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
4  
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
2  
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
feedback

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|improve this answer
1  
Yeah, I totally agree with you in an ivory tower type situation where you have an infinite supply of time and intelligence. The reason to use comments for this purpose is when you lack the intelligence or the time in the moment to refactor. Refactoring should then be done during a later iteration. – Tim Visher Oct 10 '08 at 17:08
1  
@mattlant: That assumes that all code can be self-documenting if refactored properly, and I don't think that's true. Code that implements a complicated algorithm is likely to need documentation, at least a reference to the algorithm, to give one example. – David Thornley Dec 18 '09 at 15:04
show 2 more comments
feedback

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|improve this answer
show 1 more comment
feedback

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|improve this answer
8  
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 '09 at 5:05
show 4 more comments
feedback

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|improve this answer
show 1 more comment
feedback

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|improve this answer
1  
I have seen documentation comment in private methods also. Style cop enforces them. Is there any reason? – Tanmoy Oct 6 '09 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 '09 at 23:41
feedback

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|improve this answer
feedback

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|improve this answer
show 2 more comments
feedback

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|improve this answer
feedback

I just love these:

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

result = SetDIBitsToDevice( ..10 arguments or so );
link|improve this answer
1  
+1 but guilty of these ... – Pool Dec 26 '09 at 3:02
show 1 more comment
feedback

Important is what you comment. Do you comment what the code is doing, or do you comment your intention why you code it this way?

For me are comments that describes what the code is doing pretty useless. I can read the code by my self, but i can't read the mind of the other progammer.

link|improve this answer
feedback

Don't use comments in lines like

//if red is true then
if(isRed())
link|improve this answer
feedback

I forget why I read it, so I'm probably going to misquote here, but:

Code tells you how, comments tell you why

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

A summary of my "favourites" (some mentioned above) would be:

1) Comment the intent of the code, don't restate what the code is already stating

2) Don't leave commented out code lying around - delete it. (That's what source control is for)

3) Don't have massive blocks of comments at the top of a class/module stating the history of changes to the code - they never maintained and therefore are completely out of date within one or two edits aside from being completely useless. (Again...source control)

link|improve this answer
feedback

Don't comment every line, eg:

i++; // increment i by 1

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

ETA: Whoops, a bit late.

link|improve this answer
feedback
// 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|improve this answer
3  
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
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback
1 2

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