你遇到过的源代码中最好的注释是什么?


当前回答

//Not a bug, parameter position can change..., if you think this is wrong, you are in fact wrong.

其他回答

// This interface defines method signatures<br>
interface IWhatever { ... }

//把这个放在这里的人是个白痴…这根本不管用!

但是代码还在那里……

我在一家大型投资银行看到,该银行要求记录和评论所有应用程序中断

Without a crash 

Or mighty bang 

The sync disk 

Did it's process hang

我在重用我很久以前写的一个PHP类时发现了这一点。我仍然不记得那里有什么,我仍然发现它没有任何用处……我甚至不记得我写过那篇评论;所以当我找到它的时候,我真的笑出声来了。

try
{               
    // Some database logic
}
catch (Exception $ex)
{
    // sure, it looks silly and I honestly cant remember what code used to go here... but i swear i will
    // find a use for this code.... eventually....
    throw $ex;
}
// Okay, let's do the loop, yeah come on baby let's do the loop
// and it goes like this ...