vote up 358 vote down star
521

What is the best comment in source code you have ever encountered?

show 3 more comments

locked by Jeff Atwood Apr 28 at 8:55

closed as no longer relevant by Jeff Atwood Apr 28 at 8:51

529 Answers

prev 1 14 15 16 17 18 next
vote up 232 vote down
try {

} finally { // should never happen

}
link|flag
11  
++. others in my company write this all the time! – CVertex Dec 2 '08 at 16:34
7  
i've seen that comment (and even written it myself) in the past, for things that relalyt shouldn't ever happen (but just in case, here's code to handle the error). The funniest part is that ti's placed in a finally block, which means it should always happen... – Troy Howard Dec 5 '08 at 19:54
8  
Yes, that was the joke. =) – Erik Dec 10 '08 at 0:41
4  
If you have a System.exit() call in the try block, then YES, the finally should never happen ! – romaintaz Feb 6 at 10:06
3  
Reason #984 to use Debug.Assert(). ;) – Scott Hanselman Apr 28 at 19:43
show 6 more comments
vote up 0 vote down

i just noticed myself writing this

// not brilliant solution, but fair enough heh.
link|flag
vote up 18 vote down
/// <summary>
/// The possible outcomes of an update operation (save or delete)
/// </summary>
public enum UpdateResult
{

    /// <summary>
    /// Updated successfully
    /// </summary>
    Success = 0,

    /// <summary>
    /// Updated successfully
    /// </summary>
    Failed = 1
}
link|flag
1  
Everybody's a winner! – Programmin Tool Apr 20 at 15:00
3  
Everybody's a loser, but the comments say everybody's a winner! – thomasrutter Apr 23 at 2:46
show 2 more comments
vote up 21 vote down
catch (Ex as Exception)
{
     // oh crap, we should do something.
}

Nothing like an empty catch block to make one feel that the code is robust....

link|flag
show 2 more comments
vote up 1 vote down

Nice one in VB.NET that I ran into this morning, got a chuckle ...

''' <summary>
''' Represents an exception that was logged.  Since System.Exception implements IDictionary, it can't be
''' serialized, so I had to write this.  Pretty fucking stupid thing to have to do, System.Exception should
''' be serializable right out of the box, IMHO.
''' </summary>
''' <remarks></remarks>
Public Class LogException
link|flag
show 1 more comment
vote up 7 vote down

// Whoever put this here is an idiot...this doesn't work at all !

But the code is still there...

link|flag
vote up 6 vote down

Beware of bugs in the above code; I have only proved it correct, not tried it.

That one is by Donald Knuth.

link|flag
3  
duplicate (see above) and it comes from an essay not from code – thomasrutter Apr 23 at 3:28
vote up 1 vote down
		try {
			dataSource.close();
		}
		catch (SQLException ex) {
			// Do nothing, since we're going to trash this anyway
		}

Of course, this sort of thing is actually a wtf in JDBC (or at least Oracle's JDBC driver) as it can throw SQLExceptions when closing a connection...

link|flag
vote up 5 vote down

Not a comment but an attribute

[ThereBeDragons]

And one I have seen in an implementation of IHttpHandler

//What is this?
public bool IsReusable
{
    get{return false;}
}
link|flag
show 1 more comment
vote up 1 vote down
if(count<0) count=0;    //don't get me wrong but this has to be done :p
link|flag
vote up 1 vote down

/*********************** Drag And Drop Section - Start (you should be me to mess with this section)*****************************************/

link|flag
vote up 11 vote down

I don't remember exactly, but the idea was something like this:

Person p = new Person("John", "Doe", "male");
Collection women = new ArrayList();
women.insert(p.getTail());

It's dirty code ;)

link|flag
8  
There was no comment in this answer until I added this one. – Windows programmer Oct 14 '08 at 6:30
vote up 66 vote down
if(m_measures =/*=*/ --index)
{
    ....
link|flag
1  
That's... just insanely stupid and ASKING for trouble... – Matthew Scharley Oct 12 '08 at 4:56
10  
Alternatively, like FALLTHRU, it's indicating that "this code which looks like a bug isn't" – James Ogden Oct 13 '08 at 8:06
2  
That's...horrible. – Robert Rossney Oct 18 '08 at 8:59
3  
Yeah, better to just pull things apart a bit... – Mark Brittingham Dec 15 '08 at 15:43
2  
Yet I'm strangely drawn to it ... – johnc Jan 23 at 11:01
show 6 more comments
vote up 90 vote down
// I am not sure if we need this, but too scared to delete.
link|flag
13  
Fairly sure i have written that one – qui Oct 13 '08 at 15:05
2  
Story of my life. – John Lockwood Aug 23 at 20:44
vote up 3 vote down

A funny typo that was strangely appropriate:

assert(0); // should never shit this point

link|flag
vote up 2 vote down
// set break point here - you'll never reach it
link|flag
vote up 289 vote down
/*
 * You may think you know what the following code does.
 * But you dont. Trust me.
 * Fiddle with it, and youll spend many a sleepless
 * night cursing the moment you thought youd be clever
 * enough to "optimize" the code below.
 * Now close this file and go play with something else.
 */
link|flag
13  
Reminds me of a fellow who swore he could optimize a mechanical theorem-proving algorithm I wrote years ago in an AI project. He did improve performance but then the code didn't work...which he swore was my fault. – Mark Brittingham Dec 15 '08 at 15:39
27  
If it doesn't have to work, I can optimize any code to a runtime of zero. – Michael Borgwardt Apr 3 at 16:04
show 5 more comments
vote up 33 vote down

Another classic, by Donald Knuth no less:

Beware of bugs in the above code; I have only proved it correct, not tried it.

link|flag
1  
Not actually a comment: www-cs-faculty.stanford.edu/~knuth/faq.html/… – mjs Apr 20 at 10:17
vote up 1 vote down

The ascii-art skull and crossbones (which is too difficult to recreate here) in Gosling's Emacs source (warning that the ultra-hot screen management package he wrote was not easily understood).

link|flag
vote up 56 vote down
// I know the line below is wrong, but it came that way from our IP vendor, and 
// the driver won't work if you "fix" it. I've had to revert this change 4 times
// now. Leave it alone, or I will hunt you down and hurt you
if (r = 0) {
    /* bunch of code here */
}
else
{
   /* even more code here */
}
link|flag
3  
I just love this, it makes my heart smile that someone just couldn't stand leaving the line as it was. Classic. – Banang Apr 15 at 4:27
3  
Wouldn't it be better to replace it with just r = 0; – thomasrutter Apr 22 at 12:09
8  
unless r is an object that overloads the = operator, and they grossly misused operator overloading. – Nelson LaQuet May 5 at 18:17
show 5 more comments
vote up 33 vote down
// human madable inconvenient. Way too sucks.

I still don't fully understand what it means, but I have found it to be very true about a lot of code.

link|flag
2  
The funniest comments are the ones that add ambiguity. – __ Oct 11 '08 at 18:52
show 4 more comments
vote up 2 vote down

Upon being forced to write unit tests for anemic domain objects that are nothing but bags of getters and setters (which I was forced to write as well):

// zzzzZZZZzzzz....
link|flag
vote up 28 vote down
// The following strings are meant to be funny.  Do not edit these strings
// unless you are funny, too.  If you don't know if you're funny, you're
// not funny.  If fewer than 2 people unrelated to you have told you that 
// you're funny, you're not funny.
link|flag
vote up 44 vote down
     * ...and don't just declare it volatile and think you've solved
     * the problem. You young punks think you know what volatile
     * means... why in my day we had to cast it volatile uphill
     * both ways, and the code still didn't work! Whippersnappers...

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

I believe in JBoss somewhere there was a line that read

return null; //Not really null

I always liked that line.

link|flag
vote up 11 vote down
// Hard to explain

It ended up being broken, too. No wonder it was hard to explain

link|flag
vote up 7 vote down

In the header of an XSLT file:

DON'T TOUCH THIS SCRIPT -> XSLT is like arcane, black magic

link|flag
2  
I agree. Many years ago I did some XSLT wizardry. It was kinda voodoo, but I swear I had fun with it -- when I was not pulling my hair out, that is. – schonarth Oct 21 '08 at 12:33
1  
Right, complicated things are easy but simple things can drive you crazy in XSLT... – AndrĂ© Oct 24 '08 at 15:41
vote up 25 vote down

// Catching exceptions is for communists

From Mike Duncan's page on SQLite.

link|flag
vote up 17 vote down

When writing some Perl years ago, I added these comments at the top and bottom:

# <magic type="voodoo">

...

# </magic>

The next guy to look at it wasn't so hot at Perl, and spent a while searching documentation for what 'magic' and 'voodoo' did. Since then, I've tried to add more helpful comments...

link|flag
1  
Even more funny because the guy actually thought it was real. – Jeff Keslinke Dec 18 '08 at 21:31
2  
@harry.lime <magic type="parlor">, <magic type="sleightofhand">, <magic type="card">, and many more. They are documented here: en.wikipedia.org/wiki/Template:Magic_and_Illusion/… – thomasrutter Apr 23 at 2:45
1  
Don't forget <magic type="black">. That's the kind I usually encounter in code. – Sean Nyman Jun 16 at 15:06
show 3 more comments
vote up 15 vote down

//open lid

//take sh!t

//close lid

Comments for a File open, data dump, file close...

link|flag
show 1 more comment
prev 1 14 15 16 17 18 next

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