vote up 9 vote down star
10

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

91 Answers

vote up 32 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
5  
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
show 1 more comment
vote up 3 vote down

I have a very bad habit of doing this, especially when I'm on a roll:

// TODO: Documentation.
link|flag
vote up 2 vote down

A very large source file, implementing multi-threading in a single process. In the midst of all the call-stack switching and semaphore grabbing and thread suspension and resumption was a simple comment regarding a particularly obscure bit of pointer manipulation:

/* Trickiness */

Gee, thanks for sharing.

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 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 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 2 more comments
vote up 1 vote down

Taken from legacy code, this was the only description of the following if condition's purpose (the condition spanned 4 rows at 120 cols):

#-- Whoa, now that's a big if condition.
link|flag
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 1 vote down
// Magic
menu.Visible = False
menu.Visible = True

This is from the UI framework in some PowerBuilder code I used to work on. The framework created menu items dynamically (from database data). However, when PowerBuilder was upgraded from 16-bit to 32-bit, the menu code stopped working. The lead developer somehow determined that hiding the menu and then showing it caused it to display properly.

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

Extraneous comment breaks. Normally, if there's a logical separation of flow, a line of comments like:

/***************************************************************************/

above and below that section of code can be helpful. Its also nice for when you need to come back later and split apart a large function (that started out small) into several smaller functions to keep the code easy to read.

A former programmer, who shall remain nameless, decided to add the following two lines:

//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

After every single line of code.

link|flag
1  
True. I'm sure there was a reason he used the comments, such as a note to tell where he was in the code. He never removed them after he was done, however, and the end result was that almost every line was commented. He also used indention to indicate if the code was tested or not. If you came across a large block of code that was not indented, it likely wasn't tested very well. – Steropes Apr 29 at 17:52
show 2 more comments
vote up 2 vote down

Once I saw the following comment in some code:

//I know that this is very ugly, but I am tired and in a hurry. 
//You would do the same if you were me...
//...
//[A piece of nasty code here]
link|flag
show 1 more comment
vote up 0 vote down
/* this is a hack.
 ToDo: change this code */
link|flag
vote up 0 vote down

Quoting this from memory so it might not be exact.

I don't know what the f*ck this does, but it seems to work so I am not touching it.

The funny thing is the way I found out about it. This comment was embedded in an access application some developer in our company had written for a client and distributed in an MDB. Unfortunately the code that "seems to work" bombed and Access dutifully opened the code window with the debugger highlighting the line right below the comment. It didn't exactly inspire confidence with that customer.

link|flag
vote up 2 vote down

Here are my two favorites:

                // do nothing

This doesn't really help as it just takes up space.

Then somewhere further along:

        // TODO: DAN to fix this.  Not Wes.  No sir.  Not Wes.

I guess if I'm not Dan or Wes, I should just ignore this, right?

link|flag
4  
//do nothing can be useful, if it appears in an empty block that might be mistaken for unfinished code. Whether you should ever have an empty block in the first place is another question. – Daniel Cassidy Nov 27 '08 at 13:19
show 4 more comments
vote up 0 vote down
//I am not sure why this works but it fixes the problem.

This one tops the list for my useless comments.

link|flag
vote up 0 vote down
// this is messed up, and no one actually knows how it works anymore...
link|flag
vote up 1 vote down

Once upon a time, I saw:

#region This is ugly but a mas has to do what a man has to do
Initialization of a gigantic array (...)
#endregion 
// Aren't you glad this has ended?

I was glad I was not that developer.

link|flag
vote up 2 vote down

The two most unhelpful comments I've ever seen...

try
{
  ...
}
catch
{
  // TODO: something catchy
}

I posted this one at the Daily WTF also, so I'll trim it to just the comment...

  // TODO: The following if block should be reduced to one return statememt:
  // return Regex.IsMatch(strTest, NAME_CHARS);
  if (!Regex.IsMatch(strTest, NAME_CHARS))
    return false;
  else
    return true;
link|flag
show 1 more comment
vote up 0 vote down

someone send me a c file which described a binary file his program created.

it contained no comments except somewhere in the writing of the real data

SwapArray(..); // Big endian ???
write();

I asked about the implementation of the SwapArray and he told me I didn't need it, it's just to make sure it works on linux machines.

After experimenting I found out that he used little endian every where (which is like normal) but only the real data was written in big endian. Normally you could see it in a hex editor, but the data was stored in floating point, so it's not that easy to notice the mixed endian.

link|flag
vote up 2 vote down
cntrVal = ""+ toInteger(cntrVal)      //<---MAYBE THIS IS THE WAY I'M GOING THROUGH CHANGES (comin' up comin' up) THIS IS THE WAY I WANNA LIVE

That's lyrics from an E-type song btw...

link|flag
vote up 1 vote down

Someone's name or initials, and that's it. Sometimes these signatures define a block of code...

//SFD Start
...code...
//SFD End

Like the code is such a work of art they have to sign it! Plus, what if someone else needs to change code marked this way?

This should not be confused with the "blame" or "annotate" feature in source control systems - they rock!

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

Top of the Pops surely has to be

//  This code should never be called
link|flag
1  
Huh? That's actually a very useful comment. Better yet would be to specify an assert (e.g. assert(false, "Code should never be reached")) or throw an appropriate exception but the comment's certainly better than nothing. – Konrad Rudolph Aug 17 at 14:36
show 1 more comment
vote up 0 vote down

My favorite from when I worked on a legacy communications application.

// Magic happens here...
link|flag
vote up 2 vote down
#include <stdio.h>
//why isn't this working!

With a c-compiler that only supports /*-style */ global comments.

link|flag
vote up 3 vote down

One I've never found very helpful:

<!--- Lasciate ogne speranza, voi ch'intrate --->
link|flag
2  
Dante - en.wikipedia.org/wiki/Divine_Comedy – Abizern Mar 9 at 16:24
show 2 more comments
vote up 1 vote down

Ran across a doozy today. I should have expected it given that it was part of a VBA macro in an excel workbook.

a.writeline s 'write line

I found it particularly charming that whomever wrote this took the time to write a comment that used a space to clear up the incredibly confusing jumbled together "writeline" command, but didn't find it necessary to use meaningful variable names. Best I can tell a is short for "a file", and s is short for "a String" (because "a" was already taken).

link|flag
vote up 1 vote down

Randomly, in the middle of code:

//???
link|flag
vote up 0 vote down

Came across this one today:

/// <summary>
/// The Page_Load runs when the page loads
/// </summary>
private void Page_Load(Object sender, EventArgs e) {}
link|flag
vote up 1 vote down
if (someFlag)
{
    // YES
    DoSomething();
}
else
{
    // NO
    DoSomethingElse();
}

There was one guy who did that constantly, the rest of the team eventually convinced him to stop doing it!

link|flag
show 1 more comment

Your Answer

Get an OpenID
or

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