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 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 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 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

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 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 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 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 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 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 0 vote down
{
    Long complicated code logic  //Added this
}
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 0 vote down
/* this is a hack.
 ToDo: change this code */
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 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
vote up -4 vote down

I thought this was about the worst comment on a SO post, and was disappointed to find otherwise.

link|flag
vote up -5 vote down

Commented code is the least useful comment :)

link|flag
show 1 more comment
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.