What is the best comment in source code you have ever encountered?
|
523
|
|
|
|
locked by Jeff Atwood♦ Apr 28 at 8:55 |
closed as no longer relevant by Jeff Atwood♦ Apr 28 at 8:51 |
|
|
|
||||||||||||||||||||
|
|
|
i just noticed myself writing this
|
|||
|
|
|
|
|
||||||||
|
|
|
Nothing like an empty catch block to make one feel that the code is robust.... |
|||
|
|
Nice one in VB.NET that I ran into this morning, got a chuckle ...
|
|||
|
|
But the code is still there... |
|||
|
|
|
|
That one is by Donald Knuth. |
||||
|
|
|
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... |
|||
|
|
|
|
Not a comment but an attribute
And one I have seen in an implementation of IHttpHandler
|
|||
|
|
|
|||
|
|
|
|
/*********************** Drag And Drop Section - Start (you should be me to mess with this section)*****************************************/ |
|||
|
|
|
|
I don't remember exactly, but the idea was something like this:
It's dirty code ;) |
||||
|
|
|
|
||||||||||||||||||||
|
|
|
|
||||||||
|
|
|
A funny typo that was strangely appropriate:
|
|||
|
|
|
|
// set break point here - you'll never reach it |
|||
|
|
|
|
|
||||||||
|
|
|
Another classic, by Donald Knuth no less: Beware of bugs in the above code; I have only proved it correct, not tried it. |
||||
|
|
|
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). |
|||
|
|
|
|
|
||||||||||||
|
|
|
I still don't fully understand what it means, but I have found it to be very true about a lot of code. |
||||
|
|
|
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):
|
|||
|
|
|
|
// 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. |
|||
|
|
|
|
* ...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...
|
|||
|
|
I believe in JBoss somewhere there was a line that read return null; //Not really null I always liked that line. |
|||
|
|
|
|
It ended up being broken, too. No wonder it was hard to explain |
|||
|
|
|
|
In the header of an XSLT file: DON'T TOUCH THIS SCRIPT -> XSLT is like arcane, black magic |
|||
|
|
// Catching exceptions is for communists |
|||
|
|
|
|
When writing some Perl years ago, I added these comments at the top and bottom:
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... |
||||||||||||
|
|
|
//open lid //take sh!t //close lid Comments for a File open, data dump, file close... |
|||
