What is the best comment in source code you have ever encountered?
|
521
|
|
|
|
locked by Jeff Atwood♦ Apr 28 at 8:55 |
closed as no longer relevant by Jeff Atwood♦ Apr 28 at 8:51 |
|
|
Update: The original author of the code has outed himself so I must give credit where it is due. Dan McKinley left the company I was with shortly after I started, and he talks more about the code, explaining some background and a few more "WTF's" that 'Richard' wrote. |
||||||||||||||||||||
|
|
|
I am particularly guilty of this, embedding non-constructive comments, code poetry and little jokes into most of my projects (although I usually have enough sense to remove anything directly offensive before releasing the code). Here's one I'm particulary fond of, placed far, far down a poorly-designed 'God Object':
I'M SORRY!!!! I just couldn't help myself.....! And another, which I'll admit I haven't actually released into the wild, even though I am very tempted to do so in one of my less intuitive classes:
|
||||||||||||||||||||
|
|
|
|
||||||||||||||||||||
|
|
|
|
||||||||||||||||||||
|
|
|
|
||||||||||||||||||||
|
|
|
|
||||||||||||
|
|
|
|
|||
|
|
|
||||||||||||||||||||
|
|
|
Wish I were kidding. And knowing the developer who wrote the code, I think he meant it literally. |
||||||||||||||||||||
|
|
|
|
||||||||||||||||||||
|
|
|
|
||||||||||||||||||||
|
|
|
followed by four nested for-loops |
||||||||||||||||
|
|
|
|
||||||||||||||||
|
|
|
|
||||||||
|
|
|
|
||||||||||||||||||||
|
|
|
It speaks volumes about our profession that when asked about the "best comment", we all answer with the worst comments we can find... |
||||||||||||||||||||
|
|
|
|
||||||||||||||||||||
|
|
|
About the middle of a 30 page xslt
|
||||||||||||
|
|
|
|
||||||||||||||||||||
|
|
|
in a completely uncommented 2000 line method
(I actually grepped out all the brackets one day just to see how bad it was, and, sans formatting, got this:
The endif showed up around line 800) |
||||||||||||||||||||
|
|
|
Never rely on a comment... |
||||||||||||
|
|
|
This seems to stop morons from messing my code... Autogenerated, do not edit. All changes will be undone. |
||||||||||||
|
|
|
|
||||||||
|
|
|
|
||||||||||||||||
|
|
|
|
||||||||||||||||||||
|
|
|
I went through a sleep-deprived coding run and started only writing comments that were quotes from Fight Club. Still trawling through the code years later I find a comment that makes me laugh. Most of them just random thoughts. I did however keep my comments to lines ratio pretty good!
|
||||||||
|
|
|
From Java 1.2 SwingUtilities:
|
||||
|
|
|
One of the most classic ones is the comment made by Pierre de Fermat about his well-known "Last theorem": "The margin of this page is a bit too small to write down the proof". It took more than 350 years before the proof was found... (According to wikipedia this is the original text:)
...and translated into English:
|
||||||||||||||||||||
|
|
|
Many years ago (about 1994) I was working on a Oracle PRO*C application for a large multi-national software company that you will have heard of. The app I was working on was a massive Oracle application and they had a utility that ran overnight tidying up data and doing all sorts of aggregate calculations. Every time anything needed doing as a batch job, it got shoved into this utility and as you can imagine it became an absolute monstrosity. It was also notable for the tiny number of comments that it had for such a massive program. One of the few comments it did have remains the finest comment I have ever seen for pure WTF'ness... I was trying to find a bug in a function which was hundreds of lines long and right in the middle of it was the only comment in the function:
To this day it is still the finest comment I have ever seen. |
||||||||||||||||
|
|
|
|
||||||||
|
