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

prev 1 2 3
vote up 2 vote down

I'm suprised nobody posted one like this before.

 #contentWrapper{
  position:absolute;
  top: 150px; /*80 = 30 + 50 where 50 is margin and 30 is the height of the header*/
 }

Plain wrong comments are the worst kind of comments.

link|flag
vote up 5 vote down

I saw this comment yesterday in a C# app:

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

// Good luck

link|flag
vote up 0 vote down

Another one I remember:

//TODO: This needs to be reworked.  THIS CRAP NEEDS TO STOP!!!
link|flag
vote up 1 vote down

Excessive redundancy doesn't clarify what's going on. This one is from mobile phone firmware

/*========================================================================

FUNCTION 
    DtFld_SetMin

DESCRIPTION
    This local function sets a nMin member of the Dtfld struct.

DEPENDENCIES
    None

ARGUMENTS
    [in]me
        Pointer to the Dtfld struct.
    [in]val
        Value to set

RETURN VALUE
    None.

SIDE EFFECTS
    None

NOTE
    None
========================================================================*/
/**
 @brief This local function sets a nMin member of the Dtfld struct..
 @param [in] me  Pointer to the Dtfld struct.
 @param [in]val Value to set
 @retval None 
 @note None
 @see None
*/

static __inline void DtFld_SetMin(DtFld *me, int val)
{
  me->nMin = val;
}
link|flag
vote up 1 vote down

We are maintaining terrible mess of PHP application and the original developer had a habit of leaving 'debugging code' commented out in the place. As he always said, it was because "in case he ever needs them again, he just uncomments them and voila, so it saves him a lot of work".

So all the scripts are literally riddled with lines like:

//echo "asdfada";
//echo $query."afadfadf";

None of them is actually functional in any way. They are mostly there to confirm that code execution reaches that point.

On a related note, he never deleted any obsolete script or database table. So we have directories filled with files like dosomething.php, dosomething1.php, dosomething1.bak, dosomething1.bak.php etc... Everybody scared to delete anything because nobody knows, what is really used.

link|flag
vote up 1 vote down

This:

Yup, a blank space, left as a subversion change log.

link|flag
vote up 2 vote down
/// <summary>
/// Disables the web part. (Virtual method)
/// </summary>
public virtual void EnableWebPart() { /* nothing - you have to override it */ }
link|flag
vote up 2 vote down

I work in two languages, (English and French) but my favorite comment was in french:

/* La passe du coyote qui tousse */

Translated it would gives something like this:

/* The coughing coyote trick */

It usually represented a segment of code that either seemed like a clever idea to the author and was completly obscure or it was a weird bugfix that even the author did not understand why it worked (think fixing a race condition by moving if statements around). In all cases it was poorly written code that scared anybody who had to refactor it because it was very hard to predict the effect of changing it.

link|flag
vote up 0 vote down
{
    Long complicated code logic  //Added this
}
link|flag
vote up 1 vote down

I found this in a sample application for a mapping product:

// Return value does not matter
return 0;
link|flag
vote up 0 vote down

I found this in a twisted program

# Let them send messages to the world
#del self.irc_PRIVMSG  # By deleting the method? Hello?
link|flag
vote up 1 vote down
/**
 * Implements the PaymentType interface.
 */
public class PaymentTypePo implements PaymentType
link|flag
vote up 2 vote down

AHHHRRRGGHHH Just found this in some ancient code, bet the guy thought he was pretty funny

private
  //PRIVATE means PRIVATE so no comments for you
  function LoadIt(IntID: Integer): Integer;
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 1 vote down

I once worked with a very talented assembly language programmer who had augmented the basic ARM instruction set with a number of macros. His code was made up of tens of thousands of instructions and looked something like the following - with macro instructions that I (a competent ARM programmer) couldn't read represented by ??? and an occasional regular ARM instruction like ADD:

...
??? R0,R0,#1
??? R0,R1
ADD R0,R0,#6    ; Add 6
??? R1,R0
??? R0,R0,R1
...

I can only presume that when you have a brain the size of a planet, it is too high brow to cope with those pesky instructions that are just too damn simple.

link|flag
vote up 1 vote down

Found this one today in the middle of a block of declarations:

// other variables

Gee, really? Thanks.

link|flag
vote up 1 vote down
add ax,1 ;add 1 to the accumulator

seriously? that comment wasted 5 seconds of my life.

also outdated comments FTL

//the system can only handle 5 people right now. make sure where not over
if(num_people>20){
link|flag
vote up 0 vote down

{Some Code;} // I don't Remember why I do this, but it works...

link|flag
vote up 0 vote down

Actually I have a few of these,

// 18042009: (Name here) made me do this

Not very proud of those comments but I keep them to remind me why I did WTF code that particular section, so useful in that aspect.

link|flag
vote up 0 vote down

I one time came across this little beauty in a VB.NET app

Dim huh as String 'Best name for a variable ever.
link|flag
vote up 0 vote down

I recently found this in some code I wrote aeons ago:

// it's a kind of magic (number)
$descr_id = 2;
$url_id = 34;
link|flag
vote up 0 vote down

// return

return;

link|flag
vote up 0 vote down

Just found this one today...

// TODO: this is basically a copy of the code at line 743!!!
link|flag
vote up 0 vote down

This comment was actually written in a different language, but I'll try to get the effect across in a translation:

//we trick it, if forbidden, as if it had already existed

What the comment was trying to describe was the way it was dealing with list items that were turned off - the code marked the item as a duplicate which should therefore be skipped. Yes, a very bass-ackwards way of doing things, but it paled in comparison to the nonsensical comment.

link|flag
vote up 0 vote down
[some code]
// [a commented out code line]
// this line added 2004-10-24 by JD.
// removed again 2004-11-05 by JD.
// [another commented out code line]
[some more code]

a) WHY? b) Which line?

link|flag
vote up 1 vote down

One of the funniest I have ever come across.

// HACK HACK HACK. REMOVE THIS ONCE MARLETT IS AROUND

One that made me wonder.

// this is a comment - don't delete
link|flag
vote up 0 vote down

This is a comment I wrote in a file in my group's final project in college

/* http://youtube.com/watch?v=oHg5SJYRHA0 */
link|flag
show 1 more comment
vote up 0 vote down

A classic that we always joke about at my job (complete with typos):

// Its stupid but it work

This was found multiple times in an old code base.

link|flag
vote up 0 vote down

I saw an awesome code inside the AI part of a game:

..."AI code"...
if(something)
   goto MyAwesomeLabel;   //Who's gonna be the first to dump crap on me for this?
..."More Ai code"...

MyAwesomeLabel:
   //It wasn't that hard to get here, right?
   ..."Even more AI code"...
link|flag
prev 1 2 3

Your Answer

Get an OpenID
or

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