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

// rajan: 9985508700;rajat: 917716100

link|flag
vote up 1 vote down

When you see the comment and think "No shit...".

I've seen code commented like this before.

if(isset($loggedIn)) { //if $loggedIn is set...
    if(!isset($_SESSION["commented"])) { //if $_SESSION["commented"] is set..
    	//tell the user they're logged in but haven't commented
    	echo "You are logged in but haven't commented this session"; 
    }
    else { //or...
    	//tell them they have commented!!!!
    	echo "YOU DID COMMENT!!!";
    }
}
    else { //or...
    	echo loggedOut(); //output the function "loggedOut();
    }
link|flag
vote up 0 vote down

As many people here have posted, and I totally agree with, you should strive for comment-less code. You're native written language of choice doesn't compile and unit tests don't test it, so it's never going to be as up to date as regular code.

What comments should express is meta-information. I think of it this way. The code itself describes what it's doing. Good structure and variable/method names should provide most of the why the code is doing that. But what it can't express is the next level up; why the code is written that way and not another (for example). A lot of that history should live in the version control history of course, but some of it deserves to elevated to a more obvious in-your face placement. For me, that's what comments are for.

Examples include references for algorithms used.

// This tree traversal is from "Algorithm T", section 2.3.1 of Knuth vol 1. ...

// The rules to determine account eligibility were taken from the brainstorming session with // accounting on 3/23/09 ...

// This is using sort algorithm X on purpose; performance tests on real world data showed // it to be faster than the theoretically faster algorithm Y ...

The third one in particular is the majority of comments I try to make. Whenever there's an obvious way, but it didn't work for some reason, it's good to document that the obvious way wasn't ideal. Otherwise someone might come along and "clean it up" to be more obvious and run into the same issues that you ran into long ago.

link|flag
vote up 0 vote down

The best programmer I ever met had a script that stripped out all comments. He always ran it before looking at the code. I was amazed.

"The comments never help," he said, "all they can do is convince you that bad code is right."

link|flag
show 2 more comments
vote up 1 vote down
  1. Don't comment the obvious
  2. If you didn't comment and it wasn't so obvious after all, add a comment

If some code doesn't seem to make sense, you "fixed" it and it broke, chances are that the next guy will run into the same trap -> Needs comment.

So my rule is not to comment anything except to show people around ("this stuff works with that stuff over there to achieve whatever"). Basically the stuff that you simply can't put into code because your language simply doesn't support it.

Then I refactor code to introduce sense (like grouping repeated operations in a method with a telling name).

And when I find code that behaves unexpectedly and I can't fix it, I put a comment in there for the guy who has to fix it (who might be me). In an ideal world, I should be able to fix anything but the day has only so many hours, so something has to give and in this case, it's better to add a note instead of just walking away.

link|flag
vote up 1 vote down

When the comment can be removed by correct programming:

Bad code/comment:

// Remember to put a slash at the end
directory = "/usr/rush/data/";

Good code:

if (directory.last() != '/') {
    directory += '/';
}
link|flag
vote up 0 vote down

Perhaps part of the reason people find themselves adding comments is that they are being taught to do so. Teachers frequently require comments almost everywhere. It would be nice if teachers instead taught about intelligent naming of functions and the like, but this is insufficient because the normal strategy of knowing what a function does because it is well-written does not apply if code is poorly written.

It would make for an interesting assignment to give a student very well-written, working code and ask them to get rid of every comment yet make the code just as readable. However, classes tend to focus on theory rather than practice far too often, and it is more work to grade such assignments.

link|flag
vote up 0 vote down

Comments can lie. Unit tests cannot. Use good variable/method names and write unit tests: then I'm happy.

link|flag
vote up 0 vote down

Straight from Suns official Swing documentation (on tree widget nodes):

/**
 * Returns true if the receiver allows children.
 */
boolean getAllowsChildren();

Allows children to.. what exactly? Can I add nodes by drag&drop? Should the ui display a handle to open this node? May I still add children later when I said no?

Any half decent perl script could have made a better comment.

link|flag
vote up 0 vote down

I saw this the other day:

If x = y Then DoSomething   ' one line if

Thanks for the clarification!

link|flag
vote up 0 vote down

In addition to the already-mentioned pointlessly trivial comments, there's an unpleasant habit here of putting ASCII 'borders' around them, wasting two additional lines.

//===========================================
// Log off from the system.
//===========================================
system.LogOff();

There is also a tendancy to use giant comment 'banners' to split code up into categories, like so:

//===========================================
//===========================================
//
// PRIVATE FUNCTION DECLARATIONS
//
//===========================================
//===========================================
int some_function();

Quite often I find myself playing a tedious game of 'spot the code.' One time I came across a perl file with 200 commented lines and 10 lines of code! This kind of thing really put me off comments, and I barely ever write any of my own now, preferring well-named short methods instead. (I've also set the comment highlight colour to the lightest shade of grey that I can just about read, which keeps the noise down quite well.)

So I guess my recommendation is if you really must comment, don't 'decorate' them and waste even more valuable screen estate!

link|flag
vote up 1 vote down

I once took over code with a lot of comments similar to the following in it:

function XYZ()  
{
... Lots of really bad code ...


/** f### the <some Client Name> again changed his mind, 
it is the third time this week I had to change this code, 
I am really getting <some more swearing > with this, what is it with him.  
Now I had to change this back to how I originally had it, , <some date> . **/

/**
Some code.
**/
... Some more really bad code all in one majorly long function ...  
}
link|flag
vote up 0 vote down

I'd say don't comment code that is highly complex. The comment will leave future developers more confused about the behavior of the code. It is infinitely better to write unit test cases for such complex methods. Properly documented Unit Tests are much better than code comments.

link|flag
vote up 1 vote down

If you have to explain it during a peer code review, it probably deserves a comment.

link|flag
vote up 0 vote down

Many IDEs generate useless comments (especially Javadoc style comments). As an example here's what you get with a lot of them when generating getters and setters automatically:

int foo;

/**
 * Returns the value of foo
 */
int getFoo(){
  return foo;
}

/**
 * Sets the value of foo
 */
void setFoo(int foo) {
  this.foo = foo;
}
link|flag
vote up 1 vote down

The basic method to decide, to comment or not to comment the code is to look at the section (of the code), as if you were reader, and listen to yourself. If your internal voice want's to ask: "what the hell is this?!" - then you obviously need to place an explanation on the thing, that confused you so much, otherwise it's all depends on - what do you think, the reader (which is not you) will be able to get it right, or not. Also, I would quote someone of answerers with a little addition:

Code tells you how, comments tell you what and why

link|flag
vote up 1 vote down

When not to comment code? Always! Let your code be self-documented!

link|flag
vote up 1 vote down

When coding a submission to the IOCCC.

link|flag
vote up 0 vote down

I don't comment when code is intuitive/informative enough to show what is going on.

link|flag
vote up 2 vote down

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

Code tells you how, comments tell you why

link|flag
vote up 2 vote down

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|flag
vote up 0 vote down

sorry rshimoda, I repectfully disagree. I use GhostDoc to ensure my methods/properties etc are correctly named. If GD does not automaticaly give me a comprehensive and clear comment then I need to rethink my method name. I agree the parameters are somtimes a bit obvious but its better than writing the whole thing yourself. After using GD my method names have become much more user friendly. this may be more of an idication of my coding than GD however.

link|flag
vote up 1 vote down

I just hate comments created by GhostDoc. As if

/// <param name="participant">The participant.</param>

Wasn't already obvious. And cleaning / enhancing that just to create a nice, documented framework is really tiring.

Currently I prefer using #regions rather than comments because they kind of wrap code so that you know without looking at identation when it has ended.

link|flag
vote up 5 vote down

Don't use comments in lines like

//if red is true then
if(isRed())
link|flag
vote up 19 vote down

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|flag
show 2 more comments
vote up 4 vote down

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|flag
vote up 49 vote down

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|flag
5  
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
show 4 more comments
vote up 0 vote down

If you reasonably can figure it out from the code, don't comment it. If the code's so complicated you can't understand it, change the code if you possibly can, rather than clarify with comments. Don't use comments to give a quick description of what a variable or class or function is for: use the name for that.

Typically, around here, comments are used to explain decisions (why is base_rpm 1200?), explain nonobvious things in the code (avoids the problem in case 1234), describes usage, or to give a high level view (calculates frammistan clearance using Howard's method).

link|flag
vote up 0 vote down

Saw this once in a class where we were told to "comment everything."

//This is pretty obvious
int num = 2;
//duh
char yesno = 'n';
//just declaring some more
char yesno2 = 'n';

...etc.

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.