vote up 9 vote down star
11

We all know that commenting our code is an important part of coding style for making our code understandable to the next person who comes along, or even ourselves in 6 months or so.

However, sometimes a comment just doesn't cut the mustard. I'm not talking about obvious jokes or vented frustraton, I'm talking about comments that appear to be making an attempt at explanation, but do it so poorly they might as well not be there. Comments that are too short, are too cryptic, or are just plain wrong.

As a cautonary tale, could you share something you've seen that was really just that bad, and if it's not obvious, show the code it was referring to and point out what's wrong with it? What should have gone in there instead?

See also:

flag
show 4 more comments

90 Answers

1 2 3 next
vote up 87 vote down check

Just the typical Comp Sci 101 type comments:

$i = 0; //set i to 0

$i++; //use sneaky trick to add 1 to i!

if ($i==$j) { // I made sure to use == rather than = here to avoid a bug

That sort of thing.

link|flag
14  
Damn that's sneaky =) – Ross Sep 27 '08 at 11:20
2  
Nothing like a sneaky add 1! – Rich Bradshaw Sep 29 '08 at 20:42
3  
this is so true...go dig up one of your first programming assignments. – dotjoe Apr 22 at 13:06
9  
I think these sort of comments occur because professors tell their students that they get points off if they don't comment their code, but never spend the time to explain to them the proper use of a comment. – Ryan Smith May 26 at 23:49
2  
Oh god how I hated that "comment your code in assignments" policy! – HeavyWave Oct 9 at 15:45
show 4 more comments
vote up 68 vote down

Unfilled javadoc boilerplate comments are particularly useless. They consume a lot of screen real estate without contributing anything useful. And the worst part is that where one such comment appears, hundreds of others are surely lurking behind.

/**
 * Method declaration
 *
 *
 * @param table
 * @param row
 *
 * @throws SQLException
 */
void addTransactionDelete(Table table, Object row[]) throws SQLException {
link|flag
2  
I agree. Lots of people think that this is "documentation". I've had some arguments with people who thought that is all they had to add. – Till Sep 27 '08 at 14:34
2  
I like javadoc in principle, because if you do it right you've got a quick overview, and I do it more or less right. Unfilled, on the other hand, are as useful as a C++ .h file, and less succinct. – David Thornley Apr 22 at 13:53
show 5 more comments
vote up 46 vote down

I've found myself writing this little gem before:

//@TODO: Rewrite this, it sucks. Seriously.

Usually it's a good sign that I've reached the end of my coding session for the night.

link|flag
11  
In my experience, seeing a TODO somewhere is almost a guarantee that whatever it is will never be fixed. – Jay Conrod Oct 29 '08 at 17:19
show 8 more comments
vote up 40 vote down
// remember to comment code

wtf? :D

link|flag
3  
I often use this, but to write it shorter I just write "DOCME" (which I declare as a todo task... have really many tasks in my projects :p) – Vinze Oct 29 '08 at 15:31
2  
Remember Sammy Jankis. – Nefzen Jun 9 at 21:47
vote up 33 vote down

Every comment that just repeats what the code says is useless. Comments should not tell me what the code does. If I don't know the programming language well enough, to understand what's going on by just reading the code, I should not be reading that code at all. Comments like

// Increase i by one
i++;

are completely useless. I see that i is increased by one, that is what the code says, I don't need a comment for that! Comments should be used to explain why something is done (in case it is far from being obvious) or why something is done that way and not any other way (so I can understand certain design decisions another programmer made that are by far not obvious at once). Further comments are useful to explain tricky code, where it is absolutely not possible to determine what's going on by having a quick look at the code (e.g. there are tricky algorithms to count the number of bits set in a number; if you don't know what this code does, you have no chance of guessing what goes on there).

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

Something like this:

// This method takes two integer values and adds them together via the built-in
// .NET functionality. It would be possible to code the arithmetic function
// by hand, but since .NET provides it, that would be a waste of time
private int Add(int i, int j) // i is the first value, j is the second value
{
    // add the numbers together using the .NET "+" operator
    int z = i + j;

    // return the value to the calling function
    // return z;

    // this code was updated to simplify the return statement, eliminating the need
    // for a separate variable.
    // this statement performs the add functionality using the + operator on the two
    // parameter values, and then returns the result to the calling function
    return i + j;
}

And so on.

link|flag
3  
I love how the original developer was caring about "best implementation", yet does the calculation twice... – Michael Stum Oct 29 '08 at 15:00
4  
Exactly the same way of commenting was shown to us at software engineering classes (sic!). Much-much overkill. – jimzy Dec 1 '08 at 11:19
vote up 28 vote down
Thread.Sleep(1000); // this will fix .NET's crappy threading implementation
link|flag
7  
As for what should have gone there: "this appears to work around my crappy understanding of .NET's threading implementation" – Steve Jessop Sep 27 '08 at 12:36
14  
This is a useful comment. It tells me that my predecessor didn't understand threads and/or .NET synchronisation functions. – finnw Sep 28 '08 at 0:10
show 2 more comments
vote up 28 vote down

I once worked on a project with a strange C compiler. It gave an error on a valid piece of code unless a comment was inserted between two statements. So I changed the comment to:

// Do not remove this comment else compilation will fail.

And it worked great.

link|flag
2  
I had that too once, I think it was an uninitialized pointer and the comment would have an effect on the memory layout. – Morten Christiansen Sep 27 '08 at 15:45
show 7 more comments
vote up 22 vote down

GhostDoc comes up with some pretty interesting ones on its own.

/// <summary>
/// Toes the foo.
/// </summary>
/// <returns></returns>
public Foo ToFoo()
link|flag
2  
I don't like GhostDoc. All it does is allow developers to check the box that "methods must have header comments" without the comment adding any value. Even when GhostDoc gets it right, it restates the obvious. – Anthony Oct 3 '08 at 22:19
1  
@scraimer The problem with GhostDoc is that it cannot infer anything that I wouldn't infer by reading the method signature. If you have check-in policies in place to prevent undocumented members, GhostDoc allows for that policy to be technically satisfied, but in so doing, subverts its spirit. – Mark May 18 at 13:54
show 4 more comments
vote up 22 vote down

I don't believe it. I came into this question after it had 22 answers, and no one pointed out the least possibly useful type of comment:

comments that are wrong.

It's bad enough that people write superfluous comments that get in the way of understanding code, but when someone writes a detailed comment explaining how something works, and it's either wrong in the first place, or wrong after the code was changed without changing the comment (much more likely scenario), that is definitely the worst kind of comment.

link|flag
5  
Maybe you should've provided such a comment yourself. Since your didn't, your answer is even less helpful than the 22 answers you are complaining about. – vog Sep 28 '08 at 17:50
vote up 15 vote down
// Don't know why we have to do this
link|flag
4  
But I've done that! – MatthieuF Apr 22 at 14:39
3  
Well don't do that! – jskulski May 26 at 23:58
vote up 14 vote down
// secret sauce
link|flag
vote up 13 vote down

Default comments inserted by IDEs.

The last project I worked on which used WebSphere Application Developer had plenty of maintenance developers and contractors who didn't seem to be bothered by the hundreds, if not thousands of Java classes which contained the likes of this:

/**
 * @author SomeUserWhoShouldKnowBetter
 *
 * To change this generated comment edit the template variable "typecomment":
 * Window>Preferences>Java>Templates.
 * To enable and disable the creation of type comments go to
 * Window>Preferences>Java>Code Generation.
 */

There was always that split-second between thinking you'd actually found a well-commented source file and realising that, yup, it's another default comment, which forced you to use SWEAR_WORD_OF_CHOICE.

link|flag
vote up 12 vote down

Came across a file once. Thousands of lines of code, most of it quite horrendous. Badly named variables, tricky conditionals on loops and one comment buried in the middle of the file.


   /* Hmmm. A bit tricky. */
link|flag
vote up 12 vote down
try
{
...some code...
}
catch
{
// Just don't crash, it wasn't that important anyway.
}

*sigh

link|flag
2  
I've written code like that before! Sometimes it really isn't important :) – Dave Nov 8 '08 at 18:55
show 1 more comment
vote up 10 vote down

My favorite all-time comment.

/* our second do loop */
do {

Whoever wrote it - you know who you are.

link|flag
vote up 10 vote down
//' OOOO oooo that smell!! Can't you smell that smell!??!??!!!!11!??/!!!!!1!!!!!!1

If Not Me.CurrentMenuItem.Parent Is Nothing Then
    For Each childMenuItem As MenuItem In aMenuItem.Children
		do something
	Next

    If Not Me.CurrentMenuItem.Parent.Parent Is Nothing Then
        //'item is at least a grand child
        For Each childMenuItem As MenuItem In aMenuItem.Children
            For Each grandchildMenuItem As MenuItem In childMenuItem.Children
		    	do something
            Next
        Next

        If Not Me.CurrentMenuItem.Parent.Parent.Parent Is Nothing Then
            //'item is at least a grand grand child
            For Each childMenuItem As MenuItem In aMenuItem.Children
                For Each grandchildMenuItem As MenuItem In childMenuItem.Children
                    For Each grandgrandchildMenuItem As MenuItem In grandchildMenuItem.Children
			    	    do something
                    Next
                Next
            Next

        End If
    End If
End If
link|flag
1  
+1 for making me LOL – John W Oct 9 at 20:11
show 2 more comments
vote up 8 vote down

Taken from one of my blog posts:

In the process of cleaning up some of the source code for one of the projects I manage, I came across the following comments:

/*
   MAB 08-05-2004: Who wrote this routine? When did they do it? Who should 
   I call if I have questions about it? It's worth it to have a good header
   here. It should helps to set context, it should identify the author 
   (hero or culprit!), including contact information, so that anyone who has
   questions can call or email. It's useful to have the date noted, and a 
   brief statement of intention. On the other hand, this isn't meant to be 
   busy work; it's meant to make maintenance easier--so don't go overboard.

   One other good reason to put your name on it: take credit! This is your
   craft
*/

and then a little further down:

#include "xxxMsg.h" // xxx messages
/*
   MAB 08-05-2004: With respect to the comment above, I gathered that
   from the filename. I think I need either more or less here. For one
   thing, xxxMsg.h is automatically generated from the .mc file. That might
   be interesting information. Another thing is that xxxMsg.h should NOT be
   added to source control, because it's auto-generated. Alternatively, 
   don't bother with a comment at all.
*/

and then yet again:

/*
   MAB 08-05-2004: Defining a keyword?? This seems problemmatic [sic],
   in principle if not in practice. Is this a common idiom? 
*/
link|flag
show 1 more comment
vote up 7 vote down

In a huge VB5 application

dim J
J = 0 'magic
J = J 'more magic
for J=1 to 100
...do stuff...

The reference is obviously THIS ... and yes, the application without those two lines fails at runtime with an unknown error code. We still don't know why.

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

This is an absolutely real example from a database trigger:

/******************************************************************************
   NAME:       (repeat the trigger name)
   PURPOSE:    To perform work as each row is inserted or updated.
   REVISIONS:
   Ver        Date        Author           Description
   ---------  ----------  ---------------  ------------------------------------
   1.0        27.6.2000             1. Created this trigger.
   PARAMETERS:
   INPUT:
   OUTPUT:
   RETURNED VALUE:
   CALLED BY:
   CALLS:
   EXAMPLE USE:
   ASSUMPTIONS:
   LIMITATIONS:
   ALGORITHM:
   NOTES:
******************************************************************************/
link|flag
show 2 more comments
vote up 6 vote down

The worst comment is one that gives a wrong explanation of what the code does. That is worse than no comment at all.

I've seen this kind of thing in code with way too many comments (that shouldn't be there because the code is clear enough on its own), and it happens mostly when the code is updated (refactored, modified, etc.) but the comments aren't updated along with it.

A good rule of thumb is: only write comments to explain why code is doing something, not what it does.

link|flag
vote up 6 vote down

Would definitely have to be comments that stand in place of error handling.

if(some_condition){
    do_stuff();
}
else{
    //An error occurred!
}
link|flag
vote up 5 vote down

100k LOC application that was ported from vb6 to vb.net. It looks as though a previous developer had put a comment header on one method and then copied and pasted the exact comment onto every method he wrote from then on. Hundreds of methods and each one incorrectly commented...

When i first saw it i laughed... 6 months later the joke is wearing thin.

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

a very large database engine project in C many many years ago - thousands of lines of code with short and misspelled variable names, and no comments... until way deep in nested if-conditions several thousands of lines into the module the following comment appeared:

//if you get here then you really f**ked

by that time, i think we knew that already!

link|flag
vote up 5 vote down

I saw this comment yesterday in a C# app:

//TODO: Remove this comment.
link|flag
vote up 5 vote down

I just found this one, written on the line before a commented-out line of code:

//This causes a crash for some reason. I know the real reason but it doesn't fit on this line.
link|flag
7  
Fermat's last comment, apparently. – John W Oct 9 at 20:14
show 1 more comment
vote up 4 vote down

Comments generated by an auto-javadoc tool (e.g. JAutoDoc). I had a team member submit a large amount of code that was commented like:

/**
 * Gets the something
 *
 * @param num The num
 * @param offset The offset
 */
public void getSomething(int num, bool offset)

Maybe it's helpful as a starting point, but by definition if the program is parsing the variable and method names to make its comments it can't be doing much useful.

link|flag
vote up 4 vote down

I have a lot of these:

# For each pose in the document
doc.elements.each('//pose') do |pose| ...

# For each sprite in sprites
@sprites.each do |sprite| ...

# For each X in Y
for X in Y do ...

I'm trying to cut back on that, though. :(

link|flag
show 2 more comments
vote up 4 vote down
/** function header comments required to pass checkstyle */
link|flag
show 3 more comments
vote up 3 vote down

Just the typical Comp Sci 101 type comments:

I have threatened my students with random acts of extreme violence if they ever did this in assignments. And they still did. The sense in proper indentation, however, seemed to be totally lost to them. Goes to show why Python would be the ideal language for beginners, I guess.

link|flag
show 3 more comments
1 2 3 next

Your Answer

Get an OpenID
or

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